Skip to content

Commit

Permalink
v.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
frsyuki committed Apr 9, 2016
1 parent 32c692b commit 9f094af
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
1. Install Java JDK >= 8
2. Checkout the latest code: `$ git clone https://github.com/treasure-data/digdag.git && cd digdag`
3. Build it: `$ ./gradlew cli`
4. Run example `$ ./pkg/digdag-0.5.8.jar run -f examples/NAME.yml`
4. Run example `$ ./pkg/digdag-0.5.9.jar run -f examples/NAME.yml`
5. (optional) install graphviz: `$ brew install graphviz`

## Commands
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ apply plugin: 'com.github.johnrengelman.shadow'

allprojects {
group = 'io.digdag'
version = '0.5.8'
version = '0.5.9'

apply plugin: 'java'
}
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.8");
System.out.println("0.5.9");
return;
}
System.err.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z").format(new Date()) + ": Digdag v0.5.8");
System.err.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z").format(new Date()) + ": Digdag v0.5.9");

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.8");
System.err.println(" $ digdag selfupdate 0.5.9");
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.8
0.5.9
2 changes: 1 addition & 1 deletion digdag-docs/src/command_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ Updates the executable binary file to the latest version or specified version. E
.. code-block:: console
$ digdag selfupdate
$ digdag selfupdate 0.5.8
$ digdag selfupdate 0.5.9
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.5.9
releases/release-0.5.8
releases/release-0.5.7
releases/release-0.5.6
Expand Down
20 changes: 20 additions & 0 deletions digdag-docs/src/releases/release-0.5.9.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Release 0.5.9
==================================

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

* Added ``call>`` operator.

* ``for_each>`` operator ecodes task name task name using URL encoding. This fixes "invalid task name" error when a value is array or map.


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

* Added ``_workdir`` option. This will be used internally in future release.


Release Date
------------------
2016-04-08

0 comments on commit 9f094af

Please sign in to comment.