Skip to content

Commit

Permalink
Prepare 0.5.0 release (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
leemaguire authored Nov 27, 2023
1 parent edd14c2 commit 5436324
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 345 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
/.build
/Packages
/*.xcodeproj
/.swiftpm
xcuserdata/
DerivedData/
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
Package.resolved
# Qt demo apps
examples/*.pro.user
docs/html
docs/latex

docs/latex
185 changes: 0 additions & 185 deletions .swiftpm/xcode/xcshareddata/xcschemes/realm-cpp-sdk-Package.xcscheme

This file was deleted.

67 changes: 0 additions & 67 deletions .swiftpm/xcode/xcshareddata/xcschemes/realm-cpp-sdk.xcscheme

This file was deleted.

79 changes: 0 additions & 79 deletions .swiftpm/xcode/xcshareddata/xcschemes/realm-cpp-sdkTests.xcscheme

This file was deleted.

8 changes: 1 addition & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
X.Y.Z Release notes (YYYY-MM-DD)
0.5.0 Release notes (2023-11-27)
=============================================================

### Fixed
* None

### Enhancements
* Add support for Frozen Realm / Objects. An object can be made frozen by calling the `freeze()` method on the instance.
Subsequently, if you can make a frozen Realm / Object live again by calling `thaw()`.
Expand All @@ -27,9 +24,6 @@ X.Y.Z Release notes (YYYY-MM-DD)
auto synced_realm = experimental::db(sync_config);
```
### Breaking Changes
* None
### Compatibility
* Fileformat: Generates files with format v23. Reads and automatically upgrade from fileformat v5.
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import PackageDescription

let coreVersion = Version("13.23.1")
let coreVersion = Version("13.23.4")

var cxxSettings: [CXXSetting] = [
.headerSearchPath("."),
Expand All @@ -17,9 +17,9 @@ var cxxSettings: [CXXSetting] = [
.define("REALM_ENABLE_ENCRYPTION", to: "1"),

.define("REALMCXX_VERSION_MAJOR", to: "0"),
.define("REALMCXX_VERSION_MINOR", to: "4"),
.define("REALMCXX_VERSION_MINOR", to: "5"),
.define("REALMCXX_VERSION_PATCH", to: "0"),
.define("REALMCXX_VERSION_STRING", to: "\"0.4.0\""),
.define("REALMCXX_VERSION_STRING", to: "\"0.5.0\""),
// Realm Core
.define("REALM_VERSION_MAJOR", to: String(coreVersion.major)),
.define("REALM_VERSION_MINOR", to: String(coreVersion.minor)),
Expand Down
2 changes: 1 addition & 1 deletion dependencies.list
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION=0.4.0
VERSION=0.5.0

0 comments on commit 5436324

Please sign in to comment.