Skip to content

Commit

Permalink
prepare 1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
vaind committed Mar 19, 2021
1 parent 3b45071 commit c240a1f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-------------
Expand All @@ -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
---------------
Expand All @@ -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/...
Expand Down
2 changes: 1 addition & 1 deletion objectbox/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c240a1f

Please sign in to comment.