Skip to content

Commit 5ac5bc7

Browse files
Prepare release 3.1.1
1 parent 9b10ad7 commit 5ac5bc7

File tree

3 files changed

+19
-18
lines changed

3 files changed

+19
-18
lines changed

README.md

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<p align="center"><img width="466" src="https://raw.githubusercontent.com/objectbox/objectbox-java/master/logo.png"></p>
22

33
# ObjectBox Java (Kotlin, Android)
4+
45
[ObjectBox](https://objectbox.io/) is a superfast object-oriented database with strong relation support.
56
ObjectBox is embedded into your Android, Linux, macOS, or Windows app.
67

7-
**Latest version: [3.1.0 (2021/12/15)](https://docs.objectbox.io/#objectbox-changelog)**
8+
**Latest version: [3.1.1 (2022/01/26)](https://docs.objectbox.io/#objectbox-changelog)**
89

910
Demo code using ObjectBox:
1011

@@ -26,8 +27,8 @@ box.put(playlist);
2627

2728
Want details? **[Read the docs](https://docs.objectbox.io/)**
2829

29-
Features
30-
-------------
30+
## Features
31+
3132
🏁 **High performance** on restricted devices, like IoT gateways, micro controllers, ECUs etc.\
3233
🪂 **Resourceful** with minimal CPU, power and Memory usage for maximum flexibility and sustainability\
3334
🔗 **Relations:** object links / relationships are built-in\
@@ -44,13 +45,13 @@ Features
4445

4546
Enjoy ❤️
4647

47-
Gradle setup
48-
------------
48+
## Gradle setup
49+
4950
For Android projects, add the ObjectBox Gradle plugin to your root `build.gradle`:
5051

5152
```groovy
5253
buildscript {
53-
ext.objectboxVersion = "3.1.0"
54+
ext.objectboxVersion = "3.1.1"
5455
repositories {
5556
mavenCentral()
5657
}
@@ -72,8 +73,8 @@ plugins {
7273
apply plugin: "io.objectbox" // Add after other plugins.
7374
```
7475

75-
First steps
76-
-----------
76+
## First steps
77+
7778
Create a data object class `@Entity`, for example "Playlist".
7879
```
7980
// Kotlin
@@ -101,8 +102,8 @@ The `Box` object gives you access to all major functions, like `put`, `get`, `re
101102
For details please check the [docs](https://docs.objectbox.io).
102103

103104

104-
Other languages/bindings
105-
------------------------
105+
## Other languages/bindings
106+
106107
ObjectBox supports multiple platforms and languages.
107108
Besides JVM based languages like Java and Kotlin, ObjectBox also offers:
108109

@@ -112,8 +113,8 @@ Besides JVM based languages like Java and Kotlin, ObjectBox also offers:
112113
* [ObjectBox C and C++](https://github.com/objectbox/objectbox-c): native speed with zero copy access to FlatBuffer objects
113114

114115

115-
How can I help ObjectBox?
116-
---------------------------
116+
## How can I help ObjectBox?
117+
117118
We believe, ObjectBox is super easy to use. We are on a mission to make developers’ lives better, by building developer tools that are intuitive and fun to code with.
118119

119120
To do that, we want your feedback: what do you love? What's amiss? Where do you struggle in everyday app development?
@@ -129,9 +130,9 @@ Thank you! 🙏
129130

130131
Keep in touch: For general news on ObjectBox, [check our blog](https://objectbox.io/blog)!
131132

132-
License
133-
-------
134-
Copyright 2017-2021 ObjectBox Ltd. All rights reserved.
133+
## License
134+
135+
Copyright 2017-2022 ObjectBox Ltd. All rights reserved.
135136

136137
Licensed under the Apache License, Version 2.0 (the "License");
137138
you may not use this file except in compliance with the License.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ buildscript {
22
ext {
33
// Typically, only edit those two:
44
def objectboxVersionNumber = '3.1.1' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC'
5-
def objectboxVersionRelease = false // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
5+
def objectboxVersionRelease = true // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
66

77
// version post fix: '-<value>' or '' if not defined; e.g. used by CI to pass in branch name
88
def versionPostFixValue = project.findProperty('versionPostFix')

objectbox-java/src/main/java/io/objectbox/BoxStore.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ public class BoxStore implements Closeable {
6969
@Nullable private static Object relinker;
7070

7171
/** Change so ReLinker will update native library when using workaround loading. */
72-
public static final String JNI_VERSION = "3.1.0";
72+
public static final String JNI_VERSION = "3.1.1";
7373

74-
private static final String VERSION = "3.1.0-2021-12-15";
74+
private static final String VERSION = "3.1.1-2022-01-25";
7575
private static BoxStore defaultStore;
7676

7777
/** Currently used DB dirs with values from {@link #getCanonicalPath(File)}. */

0 commit comments

Comments
 (0)