Skip to content

Commit c3d4f23

Browse files
authored
Release v0.10.4 (#1695)
1 parent fd8145b commit c3d4f23

File tree

6 files changed

+55
-4
lines changed

6 files changed

+55
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ apply plugin: 'idea'
1010

1111
allprojects {
1212
group = 'io.digdag'
13-
version = '0.10.3'
13+
version = '0.10.4'
1414

1515
ext {
1616
isSnapshotRelease = version.endsWith('-SNAPSHOT')

digdag-cli/src/main/java/io/digdag/cli/SelfUpdate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public SystemExitException usage(String error)
9090
err.println("");
9191
err.println(" Examples:");
9292
err.println(" $ " + programName + " selfupdate");
93-
err.println(" $ " + programName + " selfupdate 0.10.3");
93+
err.println(" $ " + programName + " selfupdate 0.10.4");
9494
err.println("");
9595
return systemExit(error);
9696
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.3
1+
0.10.4

digdag-docs/src/command_reference.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ Updates the executable binary file to the latest version or specified version. E
241241
.. code-block:: console
242242
243243
$ digdag selfupdate
244-
$ digdag selfupdate 0.10.3
244+
$ digdag selfupdate 0.10.4
245245
246246
Server-mode commands
247247
----------------------------------

digdag-docs/src/releases.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Release Notes
55
:maxdepth: 1
66

77
# add new version here
8+
releases/release-0.10.4
89
releases/release-0.10.3
910
releases/release-0.10.2
1011
releases/release-0.10.1
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
Release 0.10.4
2+
==============
3+
4+
General Changes
5+
---------------
6+
7+
* Logging improvements [#1680]
8+
* Make CommandExecutor pluggable (system plugin) [#1681 #901]
9+
* Upgrade Guice, JDBC for PostgreSQL [#1683]
10+
* Add ``wait`` operator [#1684]
11+
* CI improvements [#1685]
12+
* Document improvements
13+
14+
CLI Changes
15+
------------------
16+
* Add ``--count`` and ``--last-id`` option to ``workflows`` subcommand [#1668 #1679]
17+
* Add ``--logback-config`` option [#1682]
18+
19+
UI Changes
20+
----------
21+
* Fix an issue where the navbar collapsing does not work [#1633]
22+
* Reduce flow errors [#1641]
23+
* Fix an issue where the RESUME button does not work after PAUSE [#1648]
24+
* Add support for folding task timeline on click [#1649]
25+
* Add UI test [#1653]
26+
* Dependency upgrades [#1689]
27+
28+
Fixed Issues
29+
------------
30+
* Add support for using SELinux with docker [#1676]
31+
32+
Milestone
33+
---------
34+
`Here <https://github.com/treasure-data/digdag/milestone/27?closed=1>`_
35+
36+
Release Date
37+
------------
38+
2022-01-19
39+
40+
Contributors
41+
------------
42+
* Emanuel Haupt
43+
* Hiroyuki Sato
44+
* Shota Suzuki
45+
* djKooks
46+
* kamikaseda
47+
* o-mura
48+
* seiya
49+
* yoyama
50+
* yuto.suzuki

0 commit comments

Comments
 (0)