embulk 0.8.33-java → 0.8.34-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- 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 +11 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: '069952eac4f47693513fbf751b69411b7d9413ffe9758d5503a6eafd350c77ac'
|
4
|
+
data.tar.gz: c716f1f2396c043376379aad15f995885d90c1fafa28464a70e09d1791a2eda3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52f570f288d701298fbbbb90d034fc964df122b8806244186a2627dc2911560cbe7fb864a472d9a6b1fff7da822763126f373b7ad7049cd77495bd906f6f9640
|
7
|
+
data.tar.gz: 672907dfee0a6fde584905eaf4db3edb72e5253fd14fdf6e3e29fd68b13bf85441c530b0b7ba5d7a2fc69c82231f48b02211835106d79777411468b4c450e634
|
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: java
|
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: bundler
|
@@ -122,7 +122,9 @@ dependencies:
|
|
122
122
|
version: 1.5.0
|
123
123
|
prerelease: false
|
124
124
|
type: :development
|
125
|
-
description: Embulk is an open-source, plugin-based bulk data loader to scale and
|
125
|
+
description: Embulk is an open-source, plugin-based bulk data loader to scale and
|
126
|
+
simplify data management across heterogeneous data stores. It can collect and ship
|
127
|
+
any kinds of data in high throughput with transaction control.
|
126
128
|
email:
|
127
129
|
- frsyuki@gmail.com
|
128
130
|
executables:
|
@@ -155,10 +157,10 @@ files:
|
|
155
157
|
- classpath/commons-compress-1.10.jar
|
156
158
|
- classpath/commons-lang-2.4.jar
|
157
159
|
- classpath/commons-lang3-3.4.jar
|
158
|
-
- classpath/embulk-cli-0.8.
|
159
|
-
- classpath/embulk-core-0.8.
|
160
|
-
- classpath/embulk-jruby-strptime-0.8.
|
161
|
-
- classpath/embulk-standards-0.8.
|
160
|
+
- classpath/embulk-cli-0.8.34.jar
|
161
|
+
- classpath/embulk-core-0.8.34.jar
|
162
|
+
- classpath/embulk-jruby-strptime-0.8.34.jar
|
163
|
+
- classpath/embulk-standards-0.8.34.jar
|
162
164
|
- classpath/guava-18.0.jar
|
163
165
|
- classpath/guice-4.0.jar
|
164
166
|
- classpath/guice-bootstrap-0.1.1.jar
|
@@ -563,6 +565,7 @@ files:
|
|
563
565
|
- embulk-docs/src/release/release-0.8.31.rst
|
564
566
|
- embulk-docs/src/release/release-0.8.32.rst
|
565
567
|
- embulk-docs/src/release/release-0.8.33.rst
|
568
|
+
- embulk-docs/src/release/release-0.8.34.rst
|
566
569
|
- embulk-docs/src/release/release-0.8.4.rst
|
567
570
|
- embulk-docs/src/release/release-0.8.5.rst
|
568
571
|
- embulk-docs/src/release/release-0.8.6.rst
|
@@ -817,7 +820,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
817
820
|
version: '0'
|
818
821
|
requirements: []
|
819
822
|
rubyforge_project:
|
820
|
-
rubygems_version: 2.6.
|
823
|
+
rubygems_version: 2.6.13
|
821
824
|
signing_key:
|
822
825
|
specification_version: 4
|
823
826
|
summary: Embulk, a plugin-based parallel bulk data loader
|