Skip to content

Commit

Permalink
v0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
frsyuki committed Feb 6, 2017
1 parent 70e1600 commit 5aeeb3c
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 4 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.9.4-SNAPSHOT'
version = '0.9.4'

ext {
isSnapshotRelease = version.endsWith('-SNAPSHOT')
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 @@ -90,7 +90,7 @@ public SystemExitException usage(String error)
err.println("");
err.println(" Examples:");
err.println(" $ " + programName + " selfupdate");
err.println(" $ " + programName + " selfupdate 0.9.4-SNAPSHOT");
err.println(" $ " + programName + " selfupdate 0.9.4");
err.println("");
return systemExit(error);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.4-SNAPSHOT
0.9.4
2 changes: 1 addition & 1 deletion digdag-docs/src/command_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ Updates the executable binary file to the latest version or specified version. E
.. code-block:: console
$ digdag selfupdate
$ digdag selfupdate 0.9.3
$ digdag selfupdate 0.9.4
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 @@ -5,6 +5,7 @@ Release Notes
:maxdepth: 1

# add new version here
releases/release-0.9.4
releases/release-0.9.3
releases/release-0.9.2
releases/release-0.9.1
Expand Down
27 changes: 27 additions & 0 deletions digdag-docs/src/releases/release-0.9.4.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Release 0.9.4
=============

CLI Changes
---------------

* Added local secrets. New ``digdag secret --local`` command lets you to set secrets for local mode.
* Version checking become less restricted. CLI checks there is a recommended upgrade or not using Digdag server's REST API and upgrades only if one exists. If CLI is executed as a batch command (STDOUT is not TTY), force upgrade won't be required.

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

* ``td_run`` operator accepts ID of a bulk loading in addition to name.

UI Changes
---------------

* Web UI has a new interface that creates a new project or edits workflow definitions.

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

* S3 storage extension is now bundled with the released package. Digdag server uses S3 as the project archive storage if ``archive.type = s3`` and ``archive.s3.bucket`` options are set, and uses S3 as the log file storage if ``log-server.type = s3`` and ``log-server.s3.bucket`` options are set.

Release Date
------------
2017-02-06

0 comments on commit 5aeeb3c

Please sign in to comment.