diff --git a/.gitignore b/.gitignore index 17625369..564290bf 100644 --- a/.gitignore +++ b/.gitignore @@ -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 \ No newline at end of file diff --git a/.swiftpm/xcode/xcshareddata/xcschemes/realm-cpp-sdk-Package.xcscheme b/.swiftpm/xcode/xcshareddata/xcschemes/realm-cpp-sdk-Package.xcscheme deleted file mode 100644 index d96d9ad0..00000000 --- a/.swiftpm/xcode/xcshareddata/xcschemes/realm-cpp-sdk-Package.xcscheme +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.swiftpm/xcode/xcshareddata/xcschemes/realm-cpp-sdk.xcscheme b/.swiftpm/xcode/xcshareddata/xcschemes/realm-cpp-sdk.xcscheme deleted file mode 100644 index 096bae1c..00000000 --- a/.swiftpm/xcode/xcshareddata/xcschemes/realm-cpp-sdk.xcscheme +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.swiftpm/xcode/xcshareddata/xcschemes/realm-cpp-sdkTests.xcscheme b/.swiftpm/xcode/xcshareddata/xcschemes/realm-cpp-sdkTests.xcscheme deleted file mode 100644 index 8d0aabd5..00000000 --- a/.swiftpm/xcode/xcshareddata/xcschemes/realm-cpp-sdkTests.xcscheme +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/CHANGELOG.md b/CHANGELOG.md index 6936e03b..af93d528 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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()`. @@ -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. diff --git a/Package.swift b/Package.swift index cd6872d8..d861d027 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ import PackageDescription -let coreVersion = Version("13.23.1") +let coreVersion = Version("13.23.4") var cxxSettings: [CXXSetting] = [ .headerSearchPath("."), @@ -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)), diff --git a/dependencies.list b/dependencies.list index 1a21eaa2..5e2524be 100644 --- a/dependencies.list +++ b/dependencies.list @@ -1 +1 @@ -VERSION=0.4.0 \ No newline at end of file +VERSION=0.5.0 \ No newline at end of file