From d7f9be59cc6bda10b7c7cfd787b10598f8fab1c9 Mon Sep 17 00:00:00 2001 From: Civitaspo Date: Thu, 23 May 2019 14:42:17 +0900 Subject: [PATCH 1/2] Add a example using python typehint --- example/ecs_task.py/echo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/ecs_task.py/echo.py b/example/ecs_task.py/echo.py index 3eb2ed6..7980ad4 100644 --- a/example/ecs_task.py/echo.py +++ b/example/ecs_task.py/echo.py @@ -1,6 +1,6 @@ import yaml -def echo(message): +def echo(message: str): print(yaml.dump(message)) From 449fead925ddb9a7f0065eb6ebaf84fd2a2bb122 Mon Sep 17 00:00:00 2001 From: Civitaspo Date: Thu, 23 May 2019 14:42:28 +0900 Subject: [PATCH 2/2] Ship v0.0.12 --- CHANGELOG.md | 7 +++++++ README.md | 2 +- build.gradle | 2 +- example/example.dig | 2 +- .../pro/civitaspo/digdag/plugin/ecs_task/package.scala | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a285cd..88a2b0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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++ diff --git a/README.md b/README.md index c7eb099..89f2db1 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/build.gradle b/build.gradle index a62ac09..88f1719 100644 --- a/build.gradle +++ b/build.gradle @@ -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" diff --git a/example/example.dig b/example/example.dig index 3d6b616..010c6d0 100644 --- a/example/example.dig +++ b/example/example.dig @@ -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: diff --git a/src/main/scala/pro/civitaspo/digdag/plugin/ecs_task/package.scala b/src/main/scala/pro/civitaspo/digdag/plugin/ecs_task/package.scala index ff1c5c5..6cd8fac 100644 --- a/src/main/scala/pro/civitaspo/digdag/plugin/ecs_task/package.scala +++ b/src/main/scala/pro/civitaspo/digdag/plugin/ecs_task/package.scala @@ -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" }