Skip to content

Commit edd8615

Browse files
Merge branch 'release/1.4.2' into main
2 parents ae77019 + f768c14 commit edd8615

File tree

12 files changed

+65
-11
lines changed

12 files changed

+65
-11
lines changed

.github/workflows/publish-central.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
required: true
88
default: '0.0.0'
99
jobs:
10-
build:
10+
publish:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2

.github/workflows/publish-github.yml

Lines changed: 2 additions & 2 deletions
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:
40-
MSG_MINIMAL: true
40+
MSG_MINIMAL: true

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Java RFC 5297 SIV Authenticated Encryption
22

33
[![Build](https://github.com/cryptomator/siv-mode/workflows/Build/badge.svg)](https://github.com/cryptomator/siv-mode/actions?query=workflow%3ABuild)
4-
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/8b274788dab046259a40e56688236790)](https://www.codacy.com/app/cryptomator/siv-mode)
5-
[![Codacy Badge](https://api.codacy.com/project/badge/Coverage/8b274788dab046259a40e56688236790)](https://www.codacy.com/app/cryptomator/siv-mode)
4+
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/8b274788dab046259a40e56688236790)](https://www.codacy.com/gh/cryptomator/siv-mode/dashboard)
5+
[![Codacy Badge](https://api.codacy.com/project/badge/Coverage/8b274788dab046259a40e56688236790)](https://www.codacy.com/gh/cryptomator/siv-mode/dashboard)
66
[![Known Vulnerabilities](https://snyk.io/test/github/cryptomator/siv-mode/badge.svg)](https://snyk.io/test/github/cryptomator/siv-mode)
77
[![Maven Central](https://img.shields.io/maven-central/v/org.cryptomator/siv-mode.svg?maxAge=86400)](https://repo1.maven.org/maven2/org/cryptomator/siv-mode/)
88
[![Javadocs](http://www.javadoc.io/badge/org.cryptomator/siv-mode.svg)](http://www.javadoc.io/doc/org.cryptomator/siv-mode)

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.cryptomator</groupId>
55
<artifactId>siv-mode</artifactId>
6-
<version>1.4.1</version>
6+
<version>1.4.2</version>
77

88
<name>SIV Mode</name>
99
<description>RFC 5297 SIV mode: deterministic authenticated encryption</description>
@@ -41,10 +41,10 @@
4141

4242
<!-- test dependencies -->
4343
<junit.version>5.7.1</junit.version>
44-
<mockito.version>3.7.7</mockito.version>
45-
<jmh.version>1.27</jmh.version>
44+
<mockito.version>3.10.0</mockito.version>
45+
<jmh.version>1.31</jmh.version>
4646
<hamcrest.version>2.2</hamcrest.version>
47-
<guava.version>30.1-jre</guava.version>
47+
<guava.version>30.1.1-jre</guava.version>
4848
</properties>
4949

5050
<dependencies>

src/main/java/org/cryptomator/siv/SivMode.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
import javax.crypto.IllegalBlockSizeException;
1919
import javax.crypto.SecretKey;
20-
import java.nio.ByteBuffer;
2120
import java.security.Provider;
2221
import java.util.Arrays;
2322

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package org.cryptomator.siv.org.bouncycastle.crypto;
2+
3+
/**
4+
* module-info will be evaluated before maven-shade-plugin, so we need this placeholder
5+
* to avoid complaints about this package being empty.
6+
*/
7+
class Placeholder {
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package org.cryptomator.siv.org.bouncycastle.crypto.macs;
2+
3+
/**
4+
* module-info will be evaluated before maven-shade-plugin, so we need this placeholder
5+
* to avoid complaints about this package being empty.
6+
*/
7+
class Placeholder {
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package org.cryptomator.siv.org.bouncycastle.crypto.modes;
2+
3+
/**
4+
* module-info will be evaluated before maven-shade-plugin, so we need this placeholder
5+
* to avoid complaints about this package being empty.
6+
*/
7+
class Placeholder {
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package org.cryptomator.siv.org.bouncycastle.crypto.paddings;
2+
3+
/**
4+
* module-info will be evaluated before maven-shade-plugin, so we need this placeholder
5+
* to avoid complaints about this package being empty.
6+
*/
7+
class Placeholder {
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package org.cryptomator.siv.org.bouncycastle.crypto.params;
2+
3+
/**
4+
* module-info will be evaluated before maven-shade-plugin, so we need this placeholder
5+
* to avoid complaints about this package being empty.
6+
*/
7+
class Placeholder {
8+
}

0 commit comments

Comments
 (0)