embulk 0.8.20 → 0.8.21

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: 7245150e5b7108e569bc0f5d24e0fcc45a4ca29c
4
- data.tar.gz: dcd87b632fb71c07d1c423fd2f0537f4d7ac5156
3
+ metadata.gz: e6fd0bf7dea388395147c1e797b3a9590fb66cb3
4
+ data.tar.gz: 9d105ed356a192e530378f345f7d0fddfb7801ba
5
5
  SHA512:
6
- metadata.gz: 640addfdeadd9a2716f3261a9fd51e5ce9da64b625c44b9b390586d363e8c01ced751f64fcc3a54fbd1ee2ccac50b05a5179c4b3dc90ae894a5849c7aef13608
7
- data.tar.gz: 58222c6550e4454cd85eae65ac868e32d0540b9e3b118ad5006bbf5ef82a2d5f8b0ef28c8a87062557f39b33d67e6a6edc1836f3bf2d3c759587fc5739ada8b0
6
+ metadata.gz: 3fb829fa1695b96b0a1425fc6841e3fbcef4df0180d311465f99601b11d9553fddbb5c37fb6af475b91c46e68dd1249bb389ed6a63d70cce8080ab4faa701ac3
7
+ data.tar.gz: d5b5958d6aef17aad4dd09edee8016e24fc75e021aa94923a3994e4a4e8608e41082df78452280ec4940b4efc65bf159304045c92516821a30882d34fb4c6259
data/build.gradle CHANGED
@@ -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
data/embulk.gemspec CHANGED
@@ -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: ruby
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
  name: jruby-jars
@@ -110,9 +110,9 @@ files:
110
110
  - classpath/commons-compress-1.10.jar
111
111
  - classpath/commons-lang-2.4.jar
112
112
  - classpath/commons-lang3-3.4.jar
113
- - classpath/embulk-cli-0.8.20.jar
114
- - classpath/embulk-core-0.8.20.jar
115
- - classpath/embulk-standards-0.8.20.jar
113
+ - classpath/embulk-cli-0.8.21.jar
114
+ - classpath/embulk-core-0.8.21.jar
115
+ - classpath/embulk-standards-0.8.21.jar
116
116
  - classpath/guava-18.0.jar
117
117
  - classpath/guice-4.0.jar
118
118
  - classpath/guice-bootstrap-0.1.1.jar
@@ -448,6 +448,7 @@ files:
448
448
  - embulk-docs/src/release/release-0.8.19.rst
449
449
  - embulk-docs/src/release/release-0.8.2.rst
450
450
  - embulk-docs/src/release/release-0.8.20.rst
451
+ - embulk-docs/src/release/release-0.8.21.rst
451
452
  - embulk-docs/src/release/release-0.8.3.rst
452
453
  - embulk-docs/src/release/release-0.8.4.rst
453
454
  - embulk-docs/src/release/release-0.8.5.rst