Skip to content

Commit 0cf6285

Browse files
authored
Merge pull request #9 from civitaspo/rel/0.1.0
ship 0.1.0
2 parents 67d7a3a + a96b9b6 commit 0cf6285

File tree

5 files changed

+34
-4
lines changed

5 files changed

+34
-4
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: civitaspo

.github/workflows/release.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Release CI
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
release:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: Set up JDK 1.8
16+
uses: actions/setup-java@v1
17+
with:
18+
java-version: 1.8
19+
- name: Release the new gem
20+
run: |
21+
mkdir -p $HOME/.gem
22+
touch $HOME/.gem/credentials
23+
chmod 0600 $HOME/.gem/credentials
24+
printf -- "---\n:rubygems_api_key: ${RUBYGEMS_API_KEY}\n" > $HOME/.gem/credentials
25+
./gradlew gemPush
26+
env:
27+
RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}

CHENGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.1.0 (2021-05-10)
2+
==================
3+
- Get ready for v0.11 and v1.0
4+
- https://github.com/civitaspo/embulk-filter-to_json/pull/8
5+
16
0.0.5 (2017-11-17)
27
==================
38
- Use traditional constructors of TimestampFormatter against Embulk core deprecation.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ embulkPlugin {
1515
}
1616

1717
group = "pro.civitaspo"
18-
version = "0.0.5"
18+
version = "0.1.0"
1919
description = "To Json"
2020

2121
sourceCompatibility = 1.8

lib/embulk/filter/to_json.rb

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)