Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 2.1.0 release #222

Merged
merged 3 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NEXT RELEASE Release notes (YYYY-MM-DD)
2.1.0 Release notes (2024-06-27)
=============================================================

### Fixed
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("2.0.1")
let sdkVersion = Version("2.1.0")
let coreVersion = Version("14.9.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 = "2.0.1"
version = "2.1.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="9f0dc47ceaf5c2842df930aca28e98d7f594d0ce")
git.checkout(commit="9170fe12bd3527b8287734a518962b3609c6ec50")
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=2.0.1
VERSION=2.1.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": "2.0.1",
"version": "2.1.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
Loading