embulk 0.8.33 → 0.8.34

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e2da0fdbf5c1c6dedd7c9b3ddb866df6d8395789
4
- data.tar.gz: c4351f8f6aa57d6ad9f05d0a7d700efb3ab59cab
3
+ metadata.gz: 8978392335feec29f084b9474ca5e117a8f63130
4
+ data.tar.gz: 7cbdbcdc2f25e673b39608da6919b00fdd2d8a1f
5
5
  SHA512:
6
- metadata.gz: 0b47f309ce95f6c47034fc3e6a15d4637cb9ab2bde3323d7c022d046a9bb188742eeee0a401df4f0d662caf53091452fc70ddddbafc62b42afa640d2f76f2644
7
- data.tar.gz: ff255a656c604b3725cbe6a91b95ad1f7da44a49de4ac80ed2f7e4ac8ef4128ccc549b12c61504823653c3b8aea57226e0d7366341dbe8c61be3984ced3e8437
6
+ metadata.gz: c654eb93d19b99b558cd384ada893ff42967b074ce761af77d3ab227b534e5a9b8801ccef5186c7f2dbe4814f51465b2e787d2efc258c7ebca383dac8412ef2e
7
+ data.tar.gz: 3f2087b007fcde3156a1b74d378b00a98ebd01ab570de92498d55eea95f01c7c98bb5d8d1729b484f38e0c563e530c1660f1f47ee54d8d7a6e40316b7472bc7f
@@ -2,12 +2,12 @@ PATH
2
2
  remote: .
3
3
  specs:
4
4
  embulk (0.8.13)
5
- jruby-jars (= 9.1.5.0)
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.5.0)
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.5.0`.
183
+ This is an example to update JRuby to `9.1.13.0`.
184
184
 
185
185
  ```
186
- ./gradlew updateJRuby -Pto=9.1.5.0
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
-
@@ -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.33'
27
+ version = '0.8.34'
28
28
 
29
29
  ext {
30
- jrubyVersion = '9.1.5.0'
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.5.0");
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) {
@@ -4,6 +4,7 @@ Release Notes
4
4
  .. toctree::
5
5
  :maxdepth: 1
6
6
 
7
+ release/release-0.8.34
7
8
  release/release-0.8.33
8
9
  release/release-0.8.32
9
10
  release/release-0.8.31
@@ -0,0 +1,12 @@
1
+ Release 0.8.34
2
+ ==================================
3
+
4
+ General Changes
5
+ ------------------
6
+
7
+ * Upgrade the embedded JRuby to 9.1.13.0 [#679] [#730] [#791]
8
+
9
+
10
+ Release Date
11
+ ------------------
12
+ 2017-09-20
@@ -31,7 +31,7 @@ Gem::Specification.new do |gem|
31
31
  gem.platform = 'java'
32
32
 
33
33
  else
34
- gem.add_dependency "jruby-jars", '= 9.1.5.0'
34
+ gem.add_dependency "jruby-jars", '= 9.1.13.0'
35
35
  end
36
36
 
37
37
  gem.add_development_dependency "rake", [">= 0.10.0"]
@@ -1 +1 @@
1
- jruby-9.1.5.0
1
+ jruby-9.1.13.0
@@ -1 +1 @@
1
- jruby-9.1.5.0
1
+ jruby-9.1.13.0
@@ -3,7 +3,7 @@
3
3
  module Embulk
4
4
  @@warned = false
5
5
 
6
- VERSION_INTERNAL = '0.8.33'
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.33
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-15 00:00:00.000000000 Z
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.5.0
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.5.0
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.33.jar
119
- - classpath/embulk-core-0.8.33.jar
120
- - classpath/embulk-jruby-strptime-0.8.33.jar
121
- - classpath/embulk-standards-0.8.33.jar
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