Skip to content

Commit

Permalink
v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
frsyuki committed Mar 2, 2016
1 parent 1e8ce88 commit 10aab74
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 6 deletions.
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.3.2'
version = '0.3.3'

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 @@ -44,10 +44,10 @@ public static void main(String[] args)
throws Exception
{
if (args.length == 1 && args[0].equals("--version")) {
System.out.println("0.3.2");
System.out.println("0.3.3");
return;
}
System.err.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z").format(new Date()) + ": Digdag v0.3.2");
System.err.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z").format(new Date()) + ": Digdag v0.3.3");

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 @@ -52,7 +52,7 @@ public SystemExitException usage(String error)
System.err.println("");
System.err.println(" Examples:");
System.err.println(" $ digdag selfupdate");
System.err.println(" $ digdag selfupdate 0.3.2");
System.err.println(" $ digdag selfupdate 0.3.3");
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.3.2
0.3.3
2 changes: 1 addition & 1 deletion digdag-docs/src/command_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ Updates the executable binary file to the latest version or specified version. E
.. code-block:: console
$ digdag selfupdate
$ digdag selfupdate 0.3.2
$ digdag selfupdate 0.3.3
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.3.3
releases/release-0.3.2
releases/release-0.3.1
releases/release-0.3.0
Expand Down
29 changes: 29 additions & 0 deletions digdag-docs/src/releases/release-0.3.3.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Release 0.3.3
==================================

Operator Changes
------------------

* td_ddl:

* Fixed docs and examples to use arrays of table names instead of single name.

* Fixed parameter names to plural use instead of singular (create_table to create_tables, drop_table to drop_tables, empty_table to empty_tables).

* Retries REST API calls if one fails.

* td, td_load, td_table_export

* Retries REST API calls to get job status

General Changes
------------------

* Updated the default workflow generated by ``init`` command not to use rb> operator which causes error with old Ruby (< 2.0) installed by default on Mac OS X.

* Fixed check command when _type parameter exists.


Release Date
------------------
2016-03-02

0 comments on commit 10aab74

Please sign in to comment.