Skip to content

Commit 69dbdd7

Browse files
committed
Merge branch 'release_v1.3.0' into 'master'
Release cdoc2-java-ref-impl version 1.3.0 See merge request cdoc2/cdoc2-java-ref-impl!24
2 parents 13e335c + 5ee5262 commit 69dbdd7

File tree

7 files changed

+30
-15
lines changed

7 files changed

+30
-15
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [1.3.0] '/key-capsules' OAS v2.1.0 support (2024-07-02)
4+
5+
### Features
6+
7+
* Support for '/key-capsules' OAS v2.1.0 in cdoc2-client and cdoc2-cli (added `-exp` option)
8+
* cli: Improvements to interactive password asking (Don't ask password twice for decrypt).
9+
Label is not required, when CDOC2 file contains single password recipient.
10+
* Add example project to demonstrate usage of cdoc2-java-ref-impl with cdoc4j (convert cdoc -> cdoc2)
11+
312
## [1.2.0 ] Repository split and maintenance (2024-05-30)
413

514
### Features

cdoc2-cli/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<artifactId>cdoc2</artifactId>
66
<groupId>ee.cyber.cdoc2</groupId>
7-
<version>1.3.0-SNAPSHOT</version>
7+
<version>1.3.0</version>
88
</parent>
99

1010
<artifactId>cdoc2-cli</artifactId>
11-
<version>1.3.0-SNAPSHOT</version>
11+
<version>1.4.0</version>
1212
<description>Command line utility to create/process CDOC2 files</description>
1313

1414
<properties>
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>ee.cyber.cdoc2</groupId>
4444
<artifactId>cdoc2-lib</artifactId>
45-
<version>1.3.0-SNAPSHOT</version>
45+
<version>1.4.0</version>
4646
</dependency>
4747
</dependencies>
4848

cdoc2-client/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<artifactId>cdoc2</artifactId>
66
<groupId>ee.cyber.cdoc2</groupId>
7-
<version>1.3.0-SNAPSHOT</version>
7+
<version>1.3.0</version>
88
</parent>
99

1010
<artifactId>cdoc2-client</artifactId>
11-
<version>1.4.0-SNAPSHOT</version>
11+
<version>1.4.0</version>
1212
<description>CDOC2 server client generation from openapi specification</description>
1313

1414
<properties>
@@ -19,7 +19,7 @@
1919

2020
<spotbugs-annotations.version>4.7.3</spotbugs-annotations.version>
2121
<!--info.version from cdoc2-openapi/cdoc2-key-capsules-openapi.yaml -->
22-
<cdoc2-key-capsules-openapi.version>2.1.0-SNAPSHOT</cdoc2-key-capsules-openapi.version>
22+
<cdoc2-key-capsules-openapi.version>2.1.0</cdoc2-key-capsules-openapi.version>
2323
<maven.repository.url>gitlab.ext.cyber.ee::::https://gitlab.ext.cyber.ee/api/v4/projects/39/packages/maven</maven.repository.url>
2424
</properties>
2525

cdoc2-lib/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<parent>
44
<artifactId>cdoc2</artifactId>
55
<groupId>ee.cyber.cdoc2</groupId>
6-
<version>1.3.0-SNAPSHOT</version>
6+
<version>1.3.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

1010
<artifactId>cdoc2-lib</artifactId>
11-
<version>1.3.0-SNAPSHOT</version>
11+
<version>1.4.0</version>
1212
<description>CDOC2 creation and processing library</description>
1313

1414
<properties>
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>ee.cyber.cdoc2</groupId>
2828
<artifactId>cdoc2-client</artifactId>
29-
<version>1.4.0-SNAPSHOT</version>
29+
<version>1.4.0</version>
3030
</dependency>
3131

3232
<dependency>

cdoc2-schema/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<parent>
6-
<version>1.3.0-SNAPSHOT</version>
6+
<version>1.3.0</version>
77
<groupId>ee.cyber.cdoc2</groupId>
88
<artifactId>cdoc2</artifactId>
99
</parent>

make_release.sh

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,9 @@ export RELEASE_TAG="v$CDOC2_VER"
5252
git checkout -b "$RELEASE_BRANCH" || exit 1
5353
git commit -a -m "Release cdoc2-java-ref-impl version $CDOC2_VER" || exit 1
5454
git push "$GIT_REMOTE" -u "$RELEASE_BRANCH" || exit 1
55-
git tag "$RELEASE_TAG" || exit 1
56-
git push --tags $GIT_REMOTE "$RELEASE_TAG" || exit 1
55+
# instead of creating release tag on branch, merge to master and then tag
56+
#git tag "$RELEASE_TAG" || exit 1
57+
#git push --tags $GIT_REMOTE "$RELEASE_TAG" || exit 1
5758
echo "Created release branch $RELEASE_BRANCH"
5859

5960
# to delete branch, run:
@@ -76,8 +77,13 @@ fi
7677
# switch back to original branch
7778
git checkout $GIT_BRANCH
7879

79-
echo "Created release branch $RELEASE_BRANCH"
80-
echo "To merge squash back to your branch. Run"
80+
echo "Release branch candidate $RELEASE_BRANCH"
81+
echo
82+
echo "To finish release and merge $RELEASE_BRANCH, run: "
8183
echo "git merge --squash $RELEASE_BRANCH"
8284
echo "git commit -m \"Squashed commit from $RELEASE_BRANCH\""
8385
echo "git push $GIT_REMOTE $GIT_BRANCH"
86+
echo "git tag \"$RELEASE_TAG\""
87+
echo "git push --tags $GIT_REMOTE \"$RELEASE_TAG\""
88+
echo
89+
echo "Or create MR on branch $RELEASE_BRANCH and squash merge it to $GIT_BRANCH"

pom.xml

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

44
<modelVersion>4.0.0</modelVersion>
55

6-
<version>1.3.0-SNAPSHOT</version>
6+
<version>1.3.0</version>
77
<groupId>ee.cyber.cdoc2</groupId>
88
<artifactId>cdoc2</artifactId>
99
<description>CDOC2 reference implementation </description>

0 commit comments

Comments
 (0)