Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit 1617398

Browse files
committed
Prepare version 3.4.0.
1 parent 59a15b2 commit 1617398

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66
## [Unreleased]
7+
8+
## [3.4.0] - 2022-04-26
79
### Added
810
- Force load of `BouncyCastleProvider` to ensure `MD4` implementation exists. Can by disabled by java boolean property `ignore_bouncycastleprovider`.
911

@@ -76,7 +78,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
7678
### Fixed
7779
- Socket connection timeout not used on connect.
7880

79-
[Unreleased]: https://github.com/skyghis/j-interop-ng/compare/3.3.0...HEAD
81+
[Unreleased]: https://github.com/skyghis/j-interop-ng/compare/3.4.0...HEAD
82+
[3.3.0]: https://github.com/skyghis/j-interop-ng/compare/3.3.0...3.4.0
8083
[3.3.0]: https://github.com/skyghis/j-interop-ng/compare/3.2.0...3.3.0
8184
[3.2.0]: https://github.com/skyghis/j-interop-ng/compare/3.1.0...3.2.0
8285
[3.1.0]: https://github.com/skyghis/j-interop-ng/compare/3.0.0...3.1.0

RELEASE.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11

22
```console
3-
RELEASE_VERSION=3.3.0
4-
NEXT_VERSION=3.4.0
3+
RELEASE_VERSION=3.4.0
4+
NEXT_VERSION=3.5.0
55

66
cd j-interop-ng
77
git checkout jcifs-ng
88

9-
JAVA_HOME=/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 mvn release:clean
9+
JAVA_HOME=/usr/lib/jvm/temurin-8-jdk-amd64 mvn release:clean
1010
nano CHANGELOG.md
1111
git add CHANGELOG.md
1212
git commit -m "Prepare version ${RELEASE_VERSION}."
13-
JAVA_HOME=/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 mvn release:prepare -D 'pushChanges=false' -D "tag=${RELEASE_VERSION}" -D "releaseVersion=${RELEASE_VERSION}" -D "developmentVersion=${NEXT_VERSION}-SNAPSHOT"
13+
JAVA_HOME=/usr/lib/jvm/temurin-8-jdk-amd64 mvn release:prepare -D 'pushChanges=false' -D "tag=${RELEASE_VERSION}" -D "releaseVersion=${RELEASE_VERSION}" -D "developmentVersion=${NEXT_VERSION}-SNAPSHOT"
1414
git push --follow-tags
1515

1616
git checkout "${RELEASE_VERSION}"
17-
JAVA_HOME=/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 mvn clean install
18-
JAVA_HOME=/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 mvn deploy -P release
17+
JAVA_HOME=/usr/lib/jvm/temurin-8-jdk-amd64 mvn clean install
18+
JAVA_HOME=/usr/lib/jvm/temurin-8-jdk-amd64 mvn deploy -P release
1919

2020
git checkout jcifs-ng
2121
```

0 commit comments

Comments
 (0)