Skip to content

Commit

Permalink
Prepare Java release 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot-team committed Feb 13, 2024
1 parent 7206a6d commit 009aba1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ For Android projects, add the ObjectBox Gradle plugin to your root `build.gradle

```groovy
buildscript {
ext.objectboxVersion = "3.7.1"
ext.objectboxVersion = "3.8.0"
repositories {
mavenCentral()
}
Expand Down Expand Up @@ -178,7 +178,7 @@ Besides JVM based languages like Java and Kotlin, ObjectBox also offers:

## License

Copyright 2017-2023 ObjectBox Ltd. All rights reserved.
Copyright 2017-2024 ObjectBox Ltd. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ plugins {

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

// version post fix: "-<value>" or "" if not defined; e.g. used by CI to pass in branch name
val versionPostFixValue = project.findProperty("versionPostFix")
Expand Down
4 changes: 2 additions & 2 deletions objectbox-java/src/main/java/io/objectbox/BoxStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ public class BoxStore implements Closeable {
public static final String IN_MEMORY_PREFIX = "memory:";

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

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

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

0 comments on commit 009aba1

Please sign in to comment.