Skip to content

Commit 171a297

Browse files
Merge branch 'release/0.6.2'
2 parents ea3ec46 + 7ec26bd commit 171a297

File tree

19 files changed

+131
-60
lines changed

19 files changed

+131
-60
lines changed

.github/dependabot.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "maven"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
day: "monday"
8+
time: "06:00"
9+
timezone: "UTC"
10+
groups:
11+
maven-dependencies:
12+
patterns:
13+
- "*"
14+
15+
- package-ecosystem: "github-actions"
16+
directory: "/" # even for `.github/workflows`
17+
schedule:
18+
interval: "monthly"
19+
groups:
20+
github-actions:
21+
patterns:
22+
- "*"

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- uses: actions/setup-java@v3
1414
with:
15-
java-version: 21-ea
15+
java-version: 21
1616
distribution: 'zulu'
1717
cache: 'maven'
1818
- name: Setup fuse
@@ -32,10 +32,10 @@ jobs:
3232
runs-on: macos-12
3333
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
3434
steps:
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636
- uses: actions/setup-java@v3
3737
with:
38-
java-version: 21-ea
38+
java-version: 21
3939
distribution: 'zulu'
4040
cache: 'maven'
4141
- name: Setup fuse
@@ -56,10 +56,10 @@ jobs:
5656
runs-on: windows-latest
5757
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
5858
steps:
59-
- uses: actions/checkout@v3
59+
- uses: actions/checkout@v4
6060
- uses: actions/setup-java@v3
6161
with:
62-
java-version: 21-ea
62+
java-version: 21
6363
distribution: 'zulu'
6464
cache: 'maven'
6565
- name: Setup fuse
@@ -78,12 +78,12 @@ jobs:
7878
needs: [linux-amd64, mac, win]
7979
runs-on: ubuntu-latest
8080
steps:
81-
- uses: actions/checkout@v3
81+
- uses: actions/checkout@v4
8282
with:
8383
fetch-depth: 0
8484
- uses: actions/setup-java@v3
8585
with:
86-
java-version: 21-ea
86+
java-version: 21
8787
distribution: 'zulu'
8888
cache: 'maven'
8989
- name: Cache SonarCloud packages

.github/workflows/publish-central.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
publish:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
with:
1515
ref: "refs/tags/${{ github.event.inputs.tag }}"
1616
- uses: actions/setup-java@v3
1717
with:
18-
java-version: 21-ea
18+
java-version: 21
1919
distribution: 'zulu'
2020
cache: 'maven'
2121
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml

.github/workflows/publish-github.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
if: startsWith(github.ref, 'refs/tags/') # only allow publishing tagged versions
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- uses: actions/setup-java@v3
1212
with:
13-
java-version: 21-ea
13+
java-version: 21
1414
distribution: 'zulu'
1515
cache: 'maven'
1616
gpg-private-key: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }} # Value of the GPG private key to import

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# jFUSE
88

9-
Zero-Dependency Java bindings for FUSE using [JEP 4442](https://openjdk.org/jeps/442).
9+
Zero-Dependency Java bindings for FUSE using [JEP 442](https://openjdk.org/jeps/442).
1010

1111
## Status
1212

jfuse-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.cryptomator</groupId>
77
<artifactId>jfuse-parent</artifactId>
8-
<version>0.6.1</version>
8+
<version>0.6.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>jfuse-api</artifactId>

jfuse-examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.cryptomator</groupId>
77
<artifactId>jfuse-parent</artifactId>
8-
<version>0.6.1</version>
8+
<version>0.6.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>jfuse-examples</artifactId>
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>org.slf4j</groupId>
2626
<artifactId>slf4j-simple</artifactId>
27-
<version>2.0.3</version>
27+
<version>2.0.9</version>
2828
</dependency>
2929
</dependencies>
3030

jfuse-linux-aarch64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>jfuse-parent</artifactId>
77
<groupId>org.cryptomator</groupId>
8-
<version>0.6.1</version>
8+
<version>0.6.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>jfuse-linux-aarch64</artifactId>

jfuse-linux-aarch64/src/main/java/org/cryptomator/jfuse/linux/aarch64/LinuxFuseBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
@SupportedPlatform(os = OperatingSystem.LINUX, arch = Architecture.ARM64)
1515
public class LinuxFuseBuilder implements FuseBuilder {
1616

17-
private static final String DEFAULT_LIB_PATH = "/lib/aarch64-linux-gnu/libfuse3.so.3";
17+
private static final String DEFAULT_LIBNAME = "fuse3";
1818
private static final Errno ERRNO = new LinuxErrno();
1919
private String libraryPath;
2020

@@ -39,7 +39,7 @@ public Fuse build(FuseOperations fuseOperations) throws UnsatisfiedLinkError {
3939
if (libraryPath != null) {
4040
System.load(libraryPath);
4141
} else {
42-
System.load(DEFAULT_LIB_PATH);
42+
System.loadLibrary(DEFAULT_LIBNAME);
4343
}
4444
return new FuseImpl(fuseOperations);
4545
}

0 commit comments

Comments
 (0)