Skip to content

Commit

Permalink
Bump to version 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flori committed May 13, 2013
1 parent 6a8589c commit ce6ae38
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.8
1.8.0
4 changes: 2 additions & 2 deletions json.gemspec
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

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

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Florian Frank"]
s.date = "2013-05-10"
s.date = "2013-05-13"
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"]
4 changes: 2 additions & 2 deletions json_pure.gemspec
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

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

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Florian Frank"]
s.date = "2013-05-10"
s.date = "2013-05-13"
s.description = "This is a JSON implementation in pure Ruby."
s.email = "[email protected]"
s.extra_rdoc_files = ["README.rdoc"]
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.7.8'
VERSION = '1.8.0'
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:

0 comments on commit ce6ae38

Please sign in to comment.