Skip to content

Commit

Permalink
Prepare for 10.8.0 (#2769)
Browse files Browse the repository at this point in the history
* Prepare for 10.8.0

* Update changelog

* Fix changelog date

* Move parsing to after NSApplication.Init

* Look for completed workflow, even if it's not successful

Co-authored-by: LaPeste <[email protected]>
Co-authored-by: Andrea Catalini <[email protected]>
Co-authored-by: Nikola Irinchev <[email protected]>
  • Loading branch information
4 people authored Jan 17, 2022
1 parent a3870d7 commit 197e9c1
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/templates/common.lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,14 @@
if: #@ ifCondition + " && steps.check-vcpkg-cache.outputs.cache-hit != 'true'"
#@ end

#@ def downloadAllArtifacts():
#@ def downloadAllArtifacts(conclusion = "completed"):
- name: Download all artifacts
uses: #@ actionDownloadAllArtifacts
with:
workflow: main.yml
commit: ${{ github.sha }}
path: ${{ github.workspace }}/Realm/packages/
workflow_conclusion: #@ conclusion
#@ end

#@ def readVersionFromPackage():
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
workflow: main.yml
commit: ${{ github.sha }}
path: ${{ github.workspace }}/Realm/packages/
workflow_conclusion: completed
- name: Read version
id: get-version
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
workflow: main.yml
commit: ${{ github.sha }}
path: ${{ github.workspace }}/Realm/packages/
workflow_conclusion: completed
- name: Read version
id: get-version
run: |
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## vNext (TBD)
## 10.8.0 (2022-01-17)

### Enhancements
* Added the `RealmConfigurationBase.FallbackPipePath` property. In the majority of cases this property can be left null, but it should be used when a realm is opened on a filesystem where named pipes cannot be created, such as external storage on Android that uses FAT32. In this case the path needs to point to a location on another filesystem where named pipes can be created. (PR [#2766](https://github.com/realm/realm-dotnet/pull/2766))
Expand All @@ -14,7 +14,7 @@
* Realm Studio: 11.0.0 or later.

### Internal
* Using Core x.y.z.
* Using Core 11.6.1.
* Updated naming of prerelease packages to use lowercase "pr" - e.g. `10.7.1-pr-2695.1703` instead of `10.7.1-PR-2695.1703`. (PR [#2765](https://github.com/realm/realm-dotnet/pull/2765))
* Migrated from using the cli to import/export applications to configuring them via the admin API. (PR [#2768](https://github.com/realm/realm-dotnet/pull/2768))

Expand Down
2 changes: 1 addition & 1 deletion Realm/AssemblyInfo.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Product>Realm .NET</Product>
<VersionPrefix>10.7.1</VersionPrefix>
<VersionPrefix>10.8.0</VersionPrefix>
<Description Condition="'$(Description)' == ''">Realm is a mobile database: a replacement for SQLite</Description>
<Company>Realm Inc.</Company>
<Copyright>Copyright © $([System.DateTime]::Now.ToString(yyyy)) Realm Inc.</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion Realm/Realm.Unity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "io.realm.unity",
"version": "10.7.1",
"version": "10.8.0",
"displayName": "Realm",
"description": "Realm is an embedded mobile database for Unity",
"unity": "2021.1",
Expand Down
2 changes: 1 addition & 1 deletion Tests/Tests.XamarinMac/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ internal static class MainClass

public static void Main(string[] args)
{
Args = SyncTestHelpers.ExtractBaasSettings(args);
NSApplication.Init();
Args = SyncTestHelpers.ExtractBaasSettings(args);
NSApplication.Main(args);
}
}
Expand Down

0 comments on commit 197e9c1

Please sign in to comment.