Skip to content

Commit 3e8393f

Browse files
committed
Prepared next release
1 parent f314321 commit 3e8393f

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

README.adoc

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
= CmdOption - Command line parsing has never been easier
22
:toc:
33
:toc-placement: preamble
4-
:currentversion: 0.5.0
5-
:documentedVersion: 0.5.1-SNAPSHOT
4+
:currentversion: 0.6.0
5+
:documentedVersion: 0.6.0
66
:githubUrl: https://github.com/ToToTec/CmdOption
77
:wikiUrl: {githubUrl}/wiki
88
:gitterUrl: https://gitter.im/ToToTec/CmdOption
@@ -686,10 +686,11 @@ To build and deploy new release use the `deploy-maven-central.sh` script.
686686

687687
Before cutting a new release, you should ensure/do:
688688

689-
* All tests have to pass!
690689
* Update version (at least remove `-SNAPSHOT` suffix)
691-
* Update Changelog in this `README.adoc` (add changes, add proper version and date)
692-
* Create a git tag
690+
* Update or add `@since` annotation in source code
691+
* Do a full build - *All tests have to pass!*
692+
* Update asciidoc-attributes and Changelog and in this `README.adoc` (add changes, add proper version and date)
693+
* Commit and create a git tag
693694
* run the deploy script `deploy-maven-central.sh`
694695
* Stage and release repository in Sonatype Nexus (https://oss.sonatype.org/index.html#stagingRepositories)
695696
* Update version (increment and add `-SNAPSHOT` suffix)
@@ -705,7 +706,7 @@ Have a look at some other projects I'm involved with:
705706

706707
== ChangeLog
707708

708-
=== CmdOption NEXT
709+
=== CmdOption 0.6.0 - 2017-10-24
709710

710711
* Added `CmdlineParser.validate()` to detect configuration errors
711712
* Extended documentation

de.tototec.cmdoption/src/main/java/de/tototec/cmdoption/CmdlineParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ protected CommandHandle scanCommand(final Object object) {
783783
* @throws CmdlineParserException
784784
* if the configutation is not valid.
785785
*
786-
* @since 0.5.1
786+
* @since 0.6.0
787787
*/
788788
public void validate() {
789789
validateOptions();

de.tototec.cmdoption/src/main/java/de/tototec/cmdoption/handler/ByteHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Apply an one-arg option to a {@link Byte} (or <code>byte</code>) field or
1414
* method.
1515
*
16-
* @since 0.5.1
16+
* @since 0.6.0
1717
*/
1818
public class ByteHandler implements CmdOptionHandler {
1919

mvn-shared.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
object CmdOption {
22
val groupId = "de.tototec"
3-
val version = "0.5.1-SNAPSHOT"
3+
val version = "0.6.0"
44
}
55

66
object Plugins {

0 commit comments

Comments
 (0)