Skip to content

Commit

Permalink
release v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Norberg committed Apr 19, 2016
1 parent 5621839 commit 430ee13
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ apply plugin: 'maven'

allprojects {
group = 'io.digdag'
version = '0.6.0-SNAPSHOT'
version = '0.6.0'

apply plugin: 'java'
apply plugin: 'idea'
Expand Down
4 changes: 2 additions & 2 deletions digdag-cli/src/main/java/io/digdag/cli/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ public static void main(String... args)
throws Exception
{
if (args.length == 1 && args[0].equals("--version")) {
System.out.println("0.5.9");
System.out.println("0.6.0");
return;
}
System.err.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z").format(new Date()) + ": Digdag v0.5.9");
System.err.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z").format(new Date()) + ": Digdag v0.6.0");

MainOptions mainOpts = new MainOptions();
JCommander jc = new JCommander(mainOpts);
Expand Down
2 changes: 1 addition & 1 deletion digdag-cli/src/main/java/io/digdag/cli/SelfUpdate.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public SystemExitException usage(String error)
System.err.println("");
System.err.println(" Examples:");
System.err.println(" $ digdag selfupdate");
System.err.println(" $ digdag selfupdate 0.5.9");
System.err.println(" $ digdag selfupdate 0.6.0");
System.err.println("");
return systemExit(error);
}
Expand Down
2 changes: 1 addition & 1 deletion digdag-cli/src/main/resources/digdag/cli/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.9
0.6.0
2 changes: 1 addition & 1 deletion digdag-docs/src/command_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ Updates the executable binary file to the latest version or specified version. E
.. code-block:: console
$ digdag selfupdate
$ digdag selfupdate 0.5.9
$ digdag selfupdate 0.6.0
Server-mode commands
----------------------------------
Expand Down
1 change: 1 addition & 0 deletions digdag-docs/src/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Release Notes
.. toctree::
:maxdepth: 1

releases/release-0.6.0
releases/release-0.5.9
releases/release-0.5.8
releases/release-0.5.7
Expand Down
23 changes: 23 additions & 0 deletions digdag-docs/src/releases/release-0.6.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Release 0.6.0
==================================

Operator changes
------------------

* Weekly scheduling was added.
* `cron` schedule type was fixed.


General changes
------------------

* `repository` has been renamed to `project`
* Workflow structure has been changed to one workflow per file.
* `digdag.yml` is now a digdag project definition file.
* Workflow names no longer start with `+`.
* `--last-revision` was renamed to `--latest-revision`.


Release Date
------------------
2016-04-18

0 comments on commit 430ee13

Please sign in to comment.