From 3b0156a36a9d384978dadde9a538d54fa014c9e5 Mon Sep 17 00:00:00 2001 From: Ivan Dlugos Date: Tue, 25 Aug 2020 14:48:58 +0200 Subject: [PATCH] bump version to v1.2.0 --- README.md | 2 +- objectbox/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0265e7af..a64c19c9 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.1.2 (2020-03-18)](https://golang.objectbox.io/) +Latest release: [v1.2.0 (2020-08-25)](https://golang.objectbox.io/) Some features ------------- diff --git a/objectbox/version.go b/objectbox/version.go index e882a2d5..437760e6 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, 1, 2, ""} + return Version{1, 2, 0, ""} } // VersionLib returns the Version of the dynamic linked ObjectBox library