Skip to content

Commit

Permalink
release v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Norberg committed May 16, 2016
1 parent 0c1b86f commit 748e5f3
Show file tree
Hide file tree
Showing 6 changed files with 24 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.7.0'
version = '0.7.1'

apply plugin: 'java'
apply plugin: 'idea'
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 @@ -58,7 +58,7 @@ public SystemExitException usage(String error)
err.println("");
err.println(" Examples:");
err.println(" $ digdag selfupdate");
err.println(" $ digdag selfupdate 0.7.0");
err.println(" $ digdag selfupdate 0.7.1");
err.println("");
return systemExit(error);
}
Expand Down
2 changes: 1 addition & 1 deletion digdag-core/src/main/resources/io/digdag/core/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.0
0.7.1
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.7.0
$ digdag selfupdate 0.7.1
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.7.1
releases/release-0.7.0
releases/release-0.6.1
releases/release-0.6.0
Expand Down
19 changes: 19 additions & 0 deletions digdag-docs/src/releases/release-0.7.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Release 0.7.1
=============

Server mode changes
-------------------

* The Digdag server now picks up mail configuration parameters from ``$HOME/.config/digdag/config``.
The parameters have the prefix ``config.mail.`. E.g.: ``config.mail.username``, ``config.mail.password``, etc.
These parameters are not accessible as variables in workflows executing on the server.


Workflow changes
----------------

* The variables ``last_*`` and ``next_*`` were changed to ``last_session_*``, ``next_session_*``, as specified in the docs.

Release Date
------------
2016-05-13

0 comments on commit 748e5f3

Please sign in to comment.