diff --git a/README.md b/README.md index 6ef7c83..8b241e8 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ id, err := box.Put(&Person{ FirstName: "Joe", LastName: "Green" }) Want details? **[Read the docs](https://golang.objectbox.io/)** or **[check out the API reference](https://godoc.org/github.com/objectbox/objectbox-go/objectbox)**. -Latest release: [v1.2.0 (2020-08-25)](https://golang.objectbox.io/) +Latest release: [v1.3.0 (2021-03-19)](https://golang.objectbox.io/) Some features ------------- @@ -28,6 +28,7 @@ Some features * Asynchronous puts * Automatic model migration (no schema upgrade scripts etc.) * inline/prefix complex embedded structs (or you can use custom converters) +* **[ObjectBox Sync](https://objectbox.io/sync/):** keeps data in sync between devices and servers. Getting started --------------- @@ -37,6 +38,12 @@ You can have a look at [installation docs](https://golang.objectbox.io/install) bash <(curl -s https://raw.githubusercontent.com/objectbox/objectbox-go/main/install.sh) ``` +To install [ObjectBox Sync](https://objectbox.io/sync/) variant of the library, pass `--sync` argument to the command above: + +```bash +bash <(curl -s https://raw.githubusercontent.com/objectbox/objectbox-go/main/install.sh) --sync +``` + You can run tests to validate your installation ```bash go test github.com/objectbox/objectbox-go/... diff --git a/objectbox/version.go b/objectbox/version.go index 437760e..1b1e3fe 100644 --- a/objectbox/version.go +++ b/objectbox/version.go @@ -43,7 +43,7 @@ func (v Version) String() string { // VersionGo returns the Version of the ObjectBox-Go binding func VersionGo() Version { // for label, use `beta.0` format, increasing the counter for each subsequent release - return Version{1, 2, 0, ""} + return Version{1, 3, 0, ""} } // VersionLib returns the Version of the dynamic linked ObjectBox library