Skip to content

Commit

Permalink
Bump version to 0.9.16
Browse files Browse the repository at this point in the history
  • Loading branch information
komamitsu committed Sep 4, 2017
1 parent 0e36386 commit b514064
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 4 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ Installing Node.js using Homebrew on Mac OS X:
$ brew install node
```

* Python 3
* sphinx
* sphinx_rtd_theme
* recommonmark

### Running tests

```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'maven'

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

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.16-SNAPSHOT");
err.println(" $ " + programName + " selfupdate 0.9.16");
err.println("");
return systemExit(error);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.16-SNAPSHOT
0.9.16
2 changes: 1 addition & 1 deletion digdag-docs/src/command_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ Updates the executable binary file to the latest version or specified version. E
.. code-block:: console
$ digdag selfupdate
$ digdag selfupdate 0.9.15
$ digdag selfupdate 0.9.16
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.16
releases/release-0.9.15
releases/release-0.9.14
releases/release-0.9.13
Expand Down
26 changes: 26 additions & 0 deletions digdag-docs/src/releases/release-0.9.16.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Release 0.9.16
=============

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

* Fix unexpectedly escaped ``parallel`` option in ``redshift>:`` operator
* Fix unexpected retry even with ``retry: false`` option in ``http:>`` operator
* Support NULL-able values with ``pg>:`` operator's ``download_file`` option

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

* Show ``Canceled`` instead of ``Failure`` on attempt status view


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

* Remove unsupported ``Accept-Encoding: deflate`` from client requests
* Avoid unefficient query plans at ``DatabaseSessionStore.getSessions`` in ``digdag-core``


Release Date
------------
2017-09-04

0 comments on commit b514064

Please sign in to comment.