Skip to content

Commit

Permalink
New version 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
flori committed Oct 17, 2013
1 parent ffbd6dc commit a9b1820
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ Gemfile.lock
*.rbc
.rbx
.AppleDouble
.DS_Store
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
2013-05-13 (1.8.1)
* Remove Rubinius exception since transcoding should be working now.
2013-05-13 (1.8.0)
* Fix https://github.com/flori/json/issues/162 reported by Marc-Andre
Lafortune <[email protected]>. Thanks!
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.0
1.8.1
7 changes: 4 additions & 3 deletions json.gemspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# -*- encoding: utf-8 -*-
# stub: json 1.8.1 ruby lib

Gem::Specification.new do |s|
s.name = "json"
s.version = "1.8.0"
s.version = "1.8.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Florian Frank"]
s.date = "2013-05-13"
s.date = "2013-10-17"
s.description = "This is a JSON implementation as a Ruby extension in C."
s.email = "[email protected]"
s.extensions = ["ext/json/ext/generator/extconf.rb", "ext/json/ext/parser/extconf.rb"]
Expand All @@ -16,7 +17,7 @@ Gem::Specification.new do |s|
s.licenses = ["Ruby"]
s.rdoc_options = ["--title", "JSON implemention for Ruby", "--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubygems_version = "2.0.3"
s.rubygems_version = "2.1.4"
s.summary = "JSON Implementation for Ruby"
s.test_files = ["./tests/test_json.rb", "./tests/test_json_addition.rb", "./tests/test_json_encoding.rb", "./tests/test_json_fixtures.rb", "./tests/test_json_generate.rb", "./tests/test_json_generic_object.rb", "./tests/test_json_string_matching.rb", "./tests/test_json_unicode.rb"]

Expand Down
7 changes: 4 additions & 3 deletions json_pure.gemspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# -*- encoding: utf-8 -*-
# stub: json_pure 1.8.1 ruby lib

Gem::Specification.new do |s|
s.name = "json_pure"
s.version = "1.8.0"
s.version = "1.8.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Florian Frank"]
s.date = "2013-05-13"
s.date = "2013-10-17"
s.description = "This is a JSON implementation in pure Ruby."
s.email = "[email protected]"
s.extra_rdoc_files = ["README.rdoc"]
Expand All @@ -15,7 +16,7 @@ Gem::Specification.new do |s|
s.licenses = ["Ruby"]
s.rdoc_options = ["--title", "JSON implemention for ruby", "--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubygems_version = "2.0.3"
s.rubygems_version = "2.1.4"
s.summary = "JSON Implementation for Ruby"
s.test_files = ["./tests/test_json.rb", "./tests/test_json_addition.rb", "./tests/test_json_encoding.rb", "./tests/test_json_fixtures.rb", "./tests/test_json_generate.rb", "./tests/test_json_generic_object.rb", "./tests/test_json_string_matching.rb", "./tests/test_json_unicode.rb"]

Expand Down
2 changes: 1 addition & 1 deletion lib/json/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module JSON
# JSON version
VERSION = '1.8.0'
VERSION = '1.8.1'
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
Expand Down

0 comments on commit a9b1820

Please sign in to comment.