Skip to content

Commit

Permalink
Prepare 2.0.0 release (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
leemaguire authored May 24, 2024
1 parent a7a5b4c commit 156b299
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 12 deletions.
8 changes: 1 addition & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
X.Y.Z Release notes (YYYY-MM-DD)
2.0.0 Release notes (2024-05-24)
=============================================================

### Fixed
* None

### Enhancements
* None

### Breaking changes
* `sync_manager::path_for_realm(const realm::sync_config&)` is now `App::path_for_realm(const realm::sync_config&)`

Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import PackageDescription

let sdkVersion = Version("1.1.1")
let sdkVersion = Version("2.0.0")
let coreVersion = Version("14.7.0")

var cxxSettings: [CXXSetting] = [
Expand Down
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class cpprealmRecipe(ConanFile):
name = "cpprealm"
version = "1.1.1"
version = "2.0.0"

# Optional metadata
license = "Apache-2.0"
Expand Down Expand Up @@ -36,7 +36,7 @@ def source(self):
git = Git(self)
git.clone(url="https://github.com/realm/realm-cpp", target=".")
git.folder = "."
git.checkout(commit="dcf7bfea41d9645ab893fff9e97cd8cd1cba4a34")
git.checkout(commit="a7a5b4c9fd2abcdca79a12963fd1e59f41a2c15b")
git.run("submodule update --init --recursive")

def layout(self):
Expand Down
2 changes: 1 addition & 1 deletion dependencies.list
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION=1.1.1
VERSION=2.0.0
2 changes: 1 addition & 1 deletion ports/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cpprealm",
"version": "1.1.1",
"version": "2.0.0",
"description": "Realm is a mobile database that runs directly inside phones, tablets or wearables.",
"homepage": "https://github.com/realm/realm-cpp",
"license": "Apache-2.0",
Expand Down

0 comments on commit 156b299

Please sign in to comment.