Skip to content

Commit

Permalink
bump to release 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
SandyXSD committed Sep 7, 2023
1 parent 50e0c30 commit 606afbd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var (
ver = Semver{
major: 1,
minor: 0,
patch: 4,
patch: 5,
preRelease: "",
build: fmt.Sprintf("%s.%s", revisionDate, revision),
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<url>https://github.com/juicedata/juicefs</url>
<description>Hadoop FileSystem implementation for JuiceFS</description>
<artifactId>juicefs-hadoop</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
<packaging>jar</packaging>
<properties>
<hadoop.version>3.1.4</hadoop.version>
Expand Down
2 changes: 1 addition & 1 deletion sdk/java/src/main/java/io/juicefs/JuiceFileSystemImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ public static Libjfs loadLibrary() throws IOException {
LibraryLoader<Libjfs> libjfsLibraryLoader = LibraryLoader.create(Libjfs.class);
libjfsLibraryLoader.failImmediately();

int soVer = 8;
int soVer = 13;
String osId = "so";
String archId = "amd64";
String resourceFormat = "libjfs-%s.%s.gz";
Expand Down

0 comments on commit 606afbd

Please sign in to comment.