Skip to content

Commit c240a1f

Browse files
committed
prepare 1.3.0 release
1 parent 3b45071 commit c240a1f

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ id, err := box.Put(&Person{ FirstName: "Joe", LastName: "Green" })
1818
Want details? **[Read the docs](https://golang.objectbox.io/)** or
1919
**[check out the API reference](https://godoc.org/github.com/objectbox/objectbox-go/objectbox)**.
2020

21-
Latest release: [v1.2.0 (2020-08-25)](https://golang.objectbox.io/)
21+
Latest release: [v1.3.0 (2021-03-19)](https://golang.objectbox.io/)
2222

2323
Some features
2424
-------------
@@ -28,6 +28,7 @@ Some features
2828
* Asynchronous puts
2929
* Automatic model migration (no schema upgrade scripts etc.)
3030
* inline/prefix complex embedded structs (or you can use custom converters)
31+
* **[ObjectBox Sync](https://objectbox.io/sync/):** keeps data in sync between devices and servers.
3132

3233
Getting started
3334
---------------
@@ -37,6 +38,12 @@ You can have a look at [installation docs](https://golang.objectbox.io/install)
3738
bash <(curl -s https://raw.githubusercontent.com/objectbox/objectbox-go/main/install.sh)
3839
```
3940

41+
To install [ObjectBox Sync](https://objectbox.io/sync/) variant of the library, pass `--sync` argument to the command above:
42+
43+
```bash
44+
bash <(curl -s https://raw.githubusercontent.com/objectbox/objectbox-go/main/install.sh) --sync
45+
```
46+
4047
You can run tests to validate your installation
4148
```bash
4249
go test github.com/objectbox/objectbox-go/...

objectbox/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func (v Version) String() string {
4343
// VersionGo returns the Version of the ObjectBox-Go binding
4444
func VersionGo() Version {
4545
// for label, use `beta.0` format, increasing the counter for each subsequent release
46-
return Version{1, 2, 0, ""}
46+
return Version{1, 3, 0, ""}
4747
}
4848

4949
// VersionLib returns the Version of the dynamic linked ObjectBox library

0 commit comments

Comments
 (0)