File tree Expand file tree Collapse file tree 7 files changed +30
-15
lines changed
Expand file tree Collapse file tree 7 files changed +30
-15
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 >
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
Original file line number Diff line number Diff line change 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 >
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
Original file line number Diff line number Diff line change 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 >
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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change @@ -52,8 +52,9 @@ export RELEASE_TAG="v$CDOC2_VER"
5252git checkout -b " $RELEASE_BRANCH " || exit 1
5353git commit -a -m " Release cdoc2-java-ref-impl version $CDOC2_VER " || exit 1
5454git 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
5758echo " Created release branch $RELEASE_BRANCH "
5859
5960# to delete branch, run:
7677# switch back to original branch
7778git 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: "
8183echo " git merge --squash $RELEASE_BRANCH "
8284echo " git commit -m \" Squashed commit from $RELEASE_BRANCH \" "
8385echo " 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 "
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments