embulk 0.8.33 → 0.8.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +2 -3
- data/build.gradle +2 -2
- data/embulk-cli/src/main/java/org/embulk/cli/EmbulkMigrate.java +1 -1
- data/embulk-docs/src/release.rst +1 -0
- data/embulk-docs/src/release/release-0.8.34.rst +12 -0
- data/embulk.gemspec +1 -1
- data/lib/embulk/data/bundle/.ruby-version +1 -1
- data/lib/embulk/data/new/ruby/.ruby-version +1 -1
- data/lib/embulk/version.rb +1 -1
- metadata +9 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8978392335feec29f084b9474ca5e117a8f63130
|
|
4
|
+
data.tar.gz: 7cbdbcdc2f25e673b39608da6919b00fdd2d8a1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c654eb93d19b99b558cd384ada893ff42967b074ce761af77d3ab227b534e5a9b8801ccef5186c7f2dbe4814f51465b2e787d2efc258c7ebca383dac8412ef2e
|
|
7
|
+
data.tar.gz: 3f2087b007fcde3156a1b74d378b00a98ebd01ab570de92498d55eea95f01c7c98bb5d8d1729b484f38e0c563e530c1660f1f47ee54d8d7a6e40316b7472bc7f
|
data/Gemfile.lock
CHANGED
|
@@ -2,12 +2,12 @@ PATH
|
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
4
|
embulk (0.8.13)
|
|
5
|
-
jruby-jars (= 9.1.
|
|
5
|
+
jruby-jars (= 9.1.13.0)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
jruby-jars (9.1.
|
|
10
|
+
jruby-jars (9.1.13.0)
|
|
11
11
|
kramdown (1.5.0)
|
|
12
12
|
power_assert (0.2.2)
|
|
13
13
|
rake (10.4.2)
|
data/README.md
CHANGED
|
@@ -180,10 +180,10 @@ Task `dependencies` shows dependency tree of embulk-core project:
|
|
|
180
180
|
|
|
181
181
|
Task `updateJRuby` updates JRuby version of embulk-core project.
|
|
182
182
|
|
|
183
|
-
This is an example to update JRuby to `9.1.
|
|
183
|
+
This is an example to update JRuby to `9.1.13.0`.
|
|
184
184
|
|
|
185
185
|
```
|
|
186
|
-
./gradlew updateJRuby -Pto=9.1.
|
|
186
|
+
./gradlew updateJRuby -Pto=9.1.13.0
|
|
187
187
|
```
|
|
188
188
|
|
|
189
189
|
### Documents
|
|
@@ -223,4 +223,3 @@ git tag v$VERSION
|
|
|
223
223
|
See also:
|
|
224
224
|
* [Bintray](https://bintray.com)
|
|
225
225
|
* [How to acquire bintray API Keys](https://bintray.com/docs/usermanual/interacting/interacting_editingyouruserprofile.html#anchorAPIKEY)
|
|
226
|
-
|
data/build.gradle
CHANGED
|
@@ -24,10 +24,10 @@ def release_projects = [project(":embulk-core"), project(":embulk-standards"), p
|
|
|
24
24
|
|
|
25
25
|
allprojects {
|
|
26
26
|
group = 'org.embulk'
|
|
27
|
-
version = '0.8.
|
|
27
|
+
version = '0.8.34'
|
|
28
28
|
|
|
29
29
|
ext {
|
|
30
|
-
jrubyVersion = '9.1.
|
|
30
|
+
jrubyVersion = '9.1.13.0'
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
apply plugin: 'java'
|
|
@@ -197,7 +197,7 @@ public class EmbulkMigrate
|
|
|
197
197
|
final String thisEmbulkVersion)
|
|
198
198
|
throws IOException
|
|
199
199
|
{
|
|
200
|
-
migrator.write(".ruby-version", "jruby-9.1.
|
|
200
|
+
migrator.write(".ruby-version", "jruby-9.1.13.0");
|
|
201
201
|
|
|
202
202
|
// Update |embulk| version depending.
|
|
203
203
|
if (fromVersion.compareTo(new ComparableVersion("0.1.0")) <= 0) {
|
data/embulk-docs/src/release.rst
CHANGED
data/embulk.gemspec
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
jruby-9.1.
|
|
1
|
+
jruby-9.1.13.0
|
|
@@ -1 +1 @@
|
|
|
1
|
-
jruby-9.1.
|
|
1
|
+
jruby-9.1.13.0
|
data/lib/embulk/version.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module Embulk
|
|
4
4
|
@@warned = false
|
|
5
5
|
|
|
6
|
-
VERSION_INTERNAL = '0.8.
|
|
6
|
+
VERSION_INTERNAL = '0.8.34'
|
|
7
7
|
|
|
8
8
|
DEPRECATED_MESSAGE = 'Embulk::VERSION in (J)Ruby is deprecated. Use org.embulk.EmbulkVersion::VERSION instead. If this message is from a plugin, please tell this to the author of the plugin!'
|
|
9
9
|
def self.const_missing(name)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.34
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sadayuki Furuhashi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-09-
|
|
11
|
+
date: 2017-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jruby-jars
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 9.1.
|
|
19
|
+
version: 9.1.13.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 9.1.
|
|
26
|
+
version: 9.1.13.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rake
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -115,10 +115,10 @@ files:
|
|
|
115
115
|
- classpath/commons-compress-1.10.jar
|
|
116
116
|
- classpath/commons-lang-2.4.jar
|
|
117
117
|
- classpath/commons-lang3-3.4.jar
|
|
118
|
-
- classpath/embulk-cli-0.8.
|
|
119
|
-
- classpath/embulk-core-0.8.
|
|
120
|
-
- classpath/embulk-jruby-strptime-0.8.
|
|
121
|
-
- classpath/embulk-standards-0.8.
|
|
118
|
+
- classpath/embulk-cli-0.8.34.jar
|
|
119
|
+
- classpath/embulk-core-0.8.34.jar
|
|
120
|
+
- classpath/embulk-jruby-strptime-0.8.34.jar
|
|
121
|
+
- classpath/embulk-standards-0.8.34.jar
|
|
122
122
|
- classpath/guava-18.0.jar
|
|
123
123
|
- classpath/guice-4.0.jar
|
|
124
124
|
- classpath/guice-bootstrap-0.1.1.jar
|
|
@@ -523,6 +523,7 @@ files:
|
|
|
523
523
|
- embulk-docs/src/release/release-0.8.31.rst
|
|
524
524
|
- embulk-docs/src/release/release-0.8.32.rst
|
|
525
525
|
- embulk-docs/src/release/release-0.8.33.rst
|
|
526
|
+
- embulk-docs/src/release/release-0.8.34.rst
|
|
526
527
|
- embulk-docs/src/release/release-0.8.4.rst
|
|
527
528
|
- embulk-docs/src/release/release-0.8.5.rst
|
|
528
529
|
- embulk-docs/src/release/release-0.8.6.rst
|