Skip to content

Commit 15b4742

Browse files
Merge branch 'main' into develop
[ci skip]
2 parents f2cbee0 + a4908c6 commit 15b4742

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/publish-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ jobs:
3535
SLACK_ICON_EMOJI: ':bot:'
3636
SLACK_CHANNEL: 'cryptomator-desktop'
3737
SLACK_TITLE: "Published ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}"
38-
SLACK_MESSAGE: "Ready to <https://github.com/${{ github.repository }}/actions?query=workflow%3A%22Publish+to+Maven+Central%22|deploy to Maven Central>."
38+
SLACK_MESSAGE: "Ready to <https://github.com/${{ github.repository }}/actions/workflows/publish-central.yml|deploy to Maven Central>."
3939
SLACK_FOOTER:
4040
MSG_MINIMAL: true

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.cryptomator</groupId>
77
<artifactId>integrations-api</artifactId>
8-
<version>0.2.0-SNAPSHOT</version>
8+
<version>1.1.0-SNAPSHOT</version>
99

1010
<name>Cryptomator Integrations API</name>
1111
<description>Defines optional service interfaces that may be used by Cryptomator</description>

src/main/java/org/cryptomator/integrations/keychain/KeychainAccessProvider.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ public interface KeychainAccessProvider {
1010
*
1111
* @return user-friendly name (must not be null or empty)
1212
*/
13-
default String displayName() {
14-
// FIXME remove default method in 1.0.0
15-
return getClass().getSimpleName();
16-
}
13+
String displayName();
1714

1815
/**
1916
* Associates a passphrase with a given key.

0 commit comments

Comments
 (0)