Skip to content

Commit 695e512

Browse files
authored
Merge pull request #66 from civitaspo/rel/v0.1.0
Ship v0.1.0
2 parents f6236d0 + 7888399 commit 695e512

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

Diff for: CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
0.1.0 (2019-12-08)
2+
==================
3+
* [Enhancement] Update dependencies (digdag 0.9.31 -> 0.9.41, scala 2.12.6 -> 2.13.1, aws-sdk 1.11.451 -> 1.11.751)
4+
* [Enhancement] Add test dependencies
5+
* [Enhancement] Apply Scala 2.13 style
6+
* [Enhancement] Use `scala.jdk.CollectionConverters._` instead of `scala.collection.JavaConverters._`
7+
* [Enhancement] Fix deprecations by Scala 2.13
8+
* [Enhancement] Use Using.resource instead of TryWithResource
9+
* [New Feature] Use Github Actions instead of CircleCI
10+
* [New Feature] Release to Github Packages when tagging
11+
* [Enhancement] Update spotless 3.13.0 -> 3.27.1
12+
* [Enhancement] Update scalafmt 1.5.1 -> 2.3.2
13+
114
0.0.14 (2019-11-24)
215
===================
316
* [Enhancement] Add `shell` option to change the shell command that the operator uses internally.

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ _export:
1515
repositories:
1616
- https://jitpack.io
1717
dependencies:
18-
- pro.civitaspo:digdag-operator-ecs_task:0.0.14
18+
- pro.civitaspo:digdag-operator-ecs_task:0.1.0
1919
ecs_task:
2020
auth_method: profile
2121
tmp_storage:

Diff for: build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'pro.civitaspo'
9-
version = '0.0.14'
9+
version = '0.1.0'
1010

1111
def digdagVersion = '0.9.41'
1212
def scalaSemanticVersion = "2.13.1"

Diff for: example/example.dig

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _export:
44
- file://${repos}
55
# - https://jitpack.io
66
dependencies:
7-
- pro.civitaspo:digdag-operator-ecs_task:0.0.14
7+
- pro.civitaspo:digdag-operator-ecs_task:0.1.0
88
ecs_task:
99
auth_method: profile
1010
tmp_storage:

Diff for: src/main/scala/pro/civitaspo/digdag/plugin/ecs_task/package.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ package pro.civitaspo.digdag.plugin
22

33
package object ecs_task {
44

5-
val VERSION: String = "0.0.14"
5+
val VERSION: String = "0.1.0"
66

77
}

0 commit comments

Comments
 (0)