embulk 0.8.20-java → 0.8.21-java

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 712d772008ef109d5c8538bf387c47dd03cee7f9
4
- data.tar.gz: 830a5b47f62cbf01d4d22847ac6f7e94fa1bd742
3
+ metadata.gz: d4bd80b40c744f4409d92e2a431b0e3332f145ab
4
+ data.tar.gz: 2a3ae73793c955902701b03e350b1110637689f8
5
5
  SHA512:
6
- metadata.gz: 7ac3d9ee32b716ef7e2f9d7bdb7e479005fb98bbab3e6fc2e2455f221e1b4ce8546ea053c98721f4aec0ee4f3c80f35fd1b6d329af6ea3fad5aba84058e0a9b9
7
- data.tar.gz: 1003b9f276f0fddf8b1b0c3b56a73246b4352563d3ddbba59dc53401d588e08f222b3fe7b5bf33bd43d2c9a05baac08710b74b9208acca95677e9655d6c7685e
6
+ metadata.gz: f7ed8a41d591bfe5d68cf37f477fdaeb9f694434b7f8ef98599faf8b8a80b4182dd6093fa020203ba431e52e3eb9019c4b023f7195433fada934c8049b445377
7
+ data.tar.gz: 1490de3937dd2641b876c8162666218b6906a5cea45d99b1c740c9d99c474bb208b6fd1b22719eb16e2fd3e062017dec336a262855f3560732d7c3b9ab58e1a2
@@ -16,7 +16,7 @@ def release_projects = [project(":embulk-core"), project(":embulk-standards"), p
16
16
 
17
17
  allprojects {
18
18
  group = 'org.embulk'
19
- version = '0.8.20'
19
+ version = '0.8.21'
20
20
 
21
21
  ext {
22
22
  jrubyVersion = '9.1.5.0'
@@ -45,7 +45,7 @@ dependencies {
45
45
 
46
46
  gems 'rubygems:bundler:1.10.6'
47
47
  gems 'rubygems:msgpack:1.1.0'
48
- gems 'rubygems:liquid:4.0.0'
48
+ gems 'rubygems:liquid:3.0.6'
49
49
  }
50
50
 
51
51
  task unpackGems(type: JRubyPrepare) {
@@ -4,6 +4,7 @@ Release Notes
4
4
  .. toctree::
5
5
  :maxdepth: 1
6
6
 
7
+ release/release-0.8.21
7
8
  release/release-0.8.20
8
9
  release/release-0.8.19
9
10
  release/release-0.8.18
@@ -0,0 +1,17 @@
1
+ Release 0.8.21
2
+ ==================================
3
+
4
+ General Changes
5
+ ------------------
6
+
7
+ * Minor fix:
8
+
9
+ * Fixed embulk/command/embulk_run.rb to use Ruby's Embulk::VERSION_INTERNAL to fix #625. [#626]
10
+
11
+ * Updated msgpack in embulk.gemspec. (@hiroyuki-sato) [#623]
12
+
13
+ * Downgraded liquid 4.0.0 to 3.0.6 to fix #627. [#632]
14
+
15
+ Release Date
16
+ ------------------
17
+ 2017-05-15
@@ -22,7 +22,7 @@ Gem::Specification.new do |gem|
22
22
 
23
23
  if RUBY_PLATFORM =~ /java/i
24
24
  gem.add_dependency "bundler", '>= 1.10.6'
25
- gem.add_dependency "msgpack", '~> 0.7.3'
25
+ gem.add_dependency "msgpack", '~> 1.1.0'
26
26
  gem.add_dependency "liquid", '~> 3.0.6'
27
27
 
28
28
  # For embulk/guess/charset.rb. See also embulk-core/build.gradle
@@ -11,7 +11,7 @@ module Embulk
11
11
  i = argv.find_index {|arg| arg !~ /^\-/ }
12
12
  unless i
13
13
  if argv.include?('--version')
14
- puts "embulk #{org.embulk.EmbulkVersion::VERSION}"
14
+ puts "embulk #{Embulk::VERSION_INTERNAL}"
15
15
  system_exit_success
16
16
  end
17
17
  usage nil
@@ -21,9 +21,9 @@ module Embulk
21
21
  require 'java'
22
22
  require 'optparse'
23
23
  op = OptionParser.new
24
- op.version = org.embulk.EmbulkVersion::VERSION
24
+ op.version = Embulk::VERSION_INTERNAL
25
25
 
26
- puts "#{Time.now.strftime("%Y-%m-%d %H:%M:%S.%3N %z")}: Embulk v#{org.embulk.EmbulkVersion::VERSION}"
26
+ puts "#{Time.now.strftime("%Y-%m-%d %H:%M:%S.%3N %z")}: Embulk v#{Embulk::VERSION_INTERNAL}"
27
27
 
28
28
  plugin_paths = []
29
29
  load_paths = []
@@ -229,13 +229,13 @@ examples:
229
229
  (org.embulk.cli.EmbulkExample.new).createExample(ARGV[0] || "embulk-example")
230
230
 
231
231
  when :new
232
- (org.embulk.cli.EmbulkNew.new(ARGV[0], ARGV[1], org.embulk.EmbulkVersion::VERSION)).newPlugin()
232
+ (org.embulk.cli.EmbulkNew.new(ARGV[0], ARGV[1], Embulk::VERSION_INTERNAL)).newPlugin()
233
233
 
234
234
  when :migrate
235
- (org.embulk.cli.EmbulkMigrate.new).migratePlugin(ARGV[0], org.embulk.EmbulkVersion::VERSION)
235
+ (org.embulk.cli.EmbulkMigrate.new).migratePlugin(ARGV[0], Embulk::VERSION_INTERNAL)
236
236
 
237
237
  when :selfupdate
238
- (org.embulk.cli.EmbulkSelfUpdate.new).updateSelf(org.embulk.EmbulkVersion::VERSION,
238
+ (org.embulk.cli.EmbulkSelfUpdate.new).updateSelf(Embulk::VERSION_INTERNAL,
239
239
  ARGV[0],
240
240
  __FILE__,
241
241
  options[:force])
@@ -361,7 +361,7 @@ examples:
361
361
  end
362
362
 
363
363
  def self.usage(message)
364
- STDERR.puts "Embulk v#{org.embulk.EmbulkVersion::VERSION}"
364
+ STDERR.puts "Embulk v#{Embulk::VERSION_INTERNAL}"
365
365
  STDERR.puts "Usage: embulk [-vm-options] <command> [--options]"
366
366
  STDERR.puts "Commands:"
367
367
  STDERR.puts " mkbundle <directory> # create a new plugin bundle environment."
@@ -3,7 +3,7 @@
3
3
  module Embulk
4
4
  @@warned = false
5
5
 
6
- VERSION_INTERNAL = '0.8.20'
6
+ VERSION_INTERNAL = '0.8.21'
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.20
4
+ version: 0.8.21
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-05-13 00:00:00.000000000 Z
11
+ date: 2017-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  requirements:
30
30
  - - "~>"
31
31
  - !ruby/object:Gem::Version
32
- version: 0.7.3
32
+ version: 1.1.0
33
33
  name: msgpack
34
34
  prerelease: false
35
35
  type: :runtime
@@ -37,7 +37,7 @@ dependencies:
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.7.3
40
+ version: 1.1.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  requirement: !ruby/object:Gem::Requirement
43
43
  requirements:
@@ -150,9 +150,9 @@ files:
150
150
  - classpath/commons-compress-1.10.jar
151
151
  - classpath/commons-lang-2.4.jar
152
152
  - classpath/commons-lang3-3.4.jar
153
- - classpath/embulk-cli-0.8.20.jar
154
- - classpath/embulk-core-0.8.20.jar
155
- - classpath/embulk-standards-0.8.20.jar
153
+ - classpath/embulk-cli-0.8.21.jar
154
+ - classpath/embulk-core-0.8.21.jar
155
+ - classpath/embulk-standards-0.8.21.jar
156
156
  - classpath/guava-18.0.jar
157
157
  - classpath/guice-4.0.jar
158
158
  - classpath/guice-bootstrap-0.1.1.jar
@@ -488,6 +488,7 @@ files:
488
488
  - embulk-docs/src/release/release-0.8.19.rst
489
489
  - embulk-docs/src/release/release-0.8.2.rst
490
490
  - embulk-docs/src/release/release-0.8.20.rst
491
+ - embulk-docs/src/release/release-0.8.21.rst
491
492
  - embulk-docs/src/release/release-0.8.3.rst
492
493
  - embulk-docs/src/release/release-0.8.4.rst
493
494
  - embulk-docs/src/release/release-0.8.5.rst