Skip to content

Commit 825129b

Browse files
author
Ivan Dlugos
committed
increase version to v0.12.0
1 parent 7976f7d commit 825129b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# ObjectBox Generator
77

8-
Current version: 0.11.0
8+
Current version: 0.12.0
99

1010
ObjectBox is a superfast cross-platform object-oriented database.
1111
ObjectBox Generator produces binding code for ObjectBox C, C++ and Go APIs (more languages to be supported in the future).
@@ -14,7 +14,7 @@ This greatly simplifies using ObjectBox in your favourite language.
1414
## Prerequisites/Installation
1515

1616
Install the objectbox-generator by downloading the latest binary for your OS from [releases](https://github.com/objectbox/objectbox-generator/releases/latest).
17-
If you want, add it to $PATH for convenience.
17+
If you want, add it to `$PATH` for convenience.
1818
Alternatively, instead of downloading, you can build the generator yourself by cloning this repo and running `make`.
1919
To build yourself, you need a recent Go version, CMake and a C++11 tool chain.
2020

internal/generator/generator.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ import (
3434
)
3535

3636
// Version specifies the current generator version.
37-
const Version = "0.11.0"
37+
const Version = "0.12.0"
3838

3939
// VersionId specifies the current generator version identifier.
4040
// It is used to validate generated code compatibility and is increased when there are changes in the generated code.
41-
// Internal generator changes that don't change the output do not cause an increase.
41+
// Internal generator changes that don't change the output (in an incompatible way) do not cause an increase.
4242
const VersionId = 5
4343

4444
// ModelInfoFile returns the model info JSON file name in the given directory

0 commit comments

Comments
 (0)