Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.0.2 #8

Merged
merged 11 commits into from
Oct 23, 2018
Prev Previous commit
Next Next commit
Ship v0.0.2
civitaspo committed Oct 23, 2018
commit bb1d29ca103673f5231a15006f9e1663a18e9f8f
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.0.2 (2018-10-23)
==================

* [Feature] Add `param_eval>` operator that is a workaround for https://github.com/treasure-data/digdag/issues/862

0.0.1 (2018-10-07)
==================

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ _export:
repositories:
- https://jitpack.io
dependencies:
- pro.civitaspo:digdag-operator-param:0.0.1
- pro.civitaspo:digdag-operator-param:0.0.2

+show1:
echo>: "hoge: ${typeof(hoge) == 'undefined' ? 'None' : hoge}, a.b: ${typeof(a) == 'undefined' ? 'None' : typeof(a.b) == 'undefined' ? 'None' : a.b}"
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ plugins {
}

group = 'pro.civitaspo'
version = '0.0.1'
version = '0.0.2'

def digdagVersion = '0.9.30'
def scalaSemanticVersion = "2.12.6"
2 changes: 1 addition & 1 deletion example/example.dig
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ _export:
- file://${repos}
# - https://jitpack.io
dependencies:
- pro.civitaspo:digdag-operator-param:0.0.1
- pro.civitaspo:digdag-operator-param:0.0.2

+show1:
echo>: "hoge: ${typeof(hoge) == 'undefined' ? 'None' : hoge}, a.b: ${typeof(a) == 'undefined' ? 'None' : typeof(a.b) == 'undefined' ? 'None' : a.b}"