Skip to content

Commit 009aba1

Browse files
Prepare Java release 3.8.0
1 parent 7206a6d commit 009aba1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ For Android projects, add the ObjectBox Gradle plugin to your root `build.gradle
7171

7272
```groovy
7373
buildscript {
74-
ext.objectboxVersion = "3.7.1"
74+
ext.objectboxVersion = "3.8.0"
7575
repositories {
7676
mavenCentral()
7777
}
@@ -178,7 +178,7 @@ Besides JVM based languages like Java and Kotlin, ObjectBox also offers:
178178

179179
## License
180180

181-
Copyright 2017-2023 ObjectBox Ltd. All rights reserved.
181+
Copyright 2017-2024 ObjectBox Ltd. All rights reserved.
182182

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

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ plugins {
1414

1515
buildscript {
1616
// Typically, only edit those two:
17-
val objectboxVersionNumber = "3.7.2" // without "-SNAPSHOT", e.g. "2.5.0" or "2.4.0-RC"
17+
val objectboxVersionNumber = "3.8.0" // without "-SNAPSHOT", e.g. "2.5.0" or "2.4.0-RC"
1818
val objectboxVersionRelease =
19-
false // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
19+
true // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
2020

2121
// version post fix: "-<value>" or "" if not defined; e.g. used by CI to pass in branch name
2222
val 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
@@ -74,9 +74,9 @@ public class BoxStore implements Closeable {
7474
public static final String IN_MEMORY_PREFIX = "memory:";
7575

7676
/** Change so ReLinker will update native library when using workaround loading. */
77-
public static final String JNI_VERSION = "3.7.1";
77+
public static final String JNI_VERSION = "3.8.0";
7878

79-
private static final String VERSION = "3.7.1-2023-11-07";
79+
private static final String VERSION = "3.8.0-2024-02-13";
8080
private static BoxStore defaultStore;
8181

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

0 commit comments

Comments
 (0)