Skip to content

Commit

Permalink
Merge pull request #54 from civitaspo/rel/0.0.12
Browse files Browse the repository at this point in the history
Rel/0.0.12
  • Loading branch information
civitaspo authored May 23, 2019
2 parents 06dbd5b + 449fead commit ae7addf
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
0.0.12 (2019-05-23)
===================
* [Enhancement] Follow latest python runner script used by `ecs_task.py>`. The changes resolve the same issues that the bellow p-rs resolve.
* [Support type hints for Python3 on py> operator by chezou · Pull Request \#905 · treasure\-data/digdag](https://github.com/treasure-data/digdag/pull/905)
* [Fix default argument check on py> operator by chezou · Pull Request \#913 · treasure\-data/digdag](https://github.com/treasure-data/digdag/pull/913)
* [Fix digdag\.env\.add\_subtask for python3 by sonots · Pull Request \#972 · treasure\-data/digdag](https://github.com/treasure-data/digdag/pull/972)

0.0.11 (2019-01-24)
===================
* [Enhancement] `ecs_task.wait>` operator supports changeable interval and exponential backoff storategy. @Mulyu++
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ _export:
repositories:
- https://jitpack.io
dependencies:
- pro.civitaspo:digdag-operator-ecs_task:0.0.11
- pro.civitaspo:digdag-operator-ecs_task:0.0.12
ecs_task:
auth_method: profile
tmp_storage:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'pro.civitaspo'
version = '0.0.11'
version = '0.0.12'

def digdagVersion = '0.9.31'
def scalaSemanticVersion = "2.12.6"
Expand Down
2 changes: 1 addition & 1 deletion example/ecs_task.py/echo.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import yaml


def echo(message):
def echo(message: str):
print(yaml.dump(message))

2 changes: 1 addition & 1 deletion example/example.dig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ _export:
- file://${repos}
# - https://jitpack.io
dependencies:
- pro.civitaspo:digdag-operator-ecs_task:0.0.11
- pro.civitaspo:digdag-operator-ecs_task:0.0.12
ecs_task:
auth_method: profile
tmp_storage:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package pro.civitaspo.digdag.plugin

package object ecs_task {

val VERSION: String = "0.0.11"
val VERSION: String = "0.0.12"

}

0 comments on commit ae7addf

Please sign in to comment.