summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--VERSION2
-rw-r--r--json.gemspecbin5008 -> 5008 bytes
-rw-r--r--json_pure.gemspec4
-rw-r--r--lib/json/version.rb2
5 files changed, 6 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 00b692e..8ffecf7 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+2015-06-01 (1.8.3)
+ * Fix potential memory leak, thx to nobu.
2015-01-08 (1.8.2)
* Some performance improvements by Vipul A M <vipulnsward@gmail.com>.
* Fix by Jason R. Clark <jclark@newrelic.com> to avoid mutation of
diff --git a/VERSION b/VERSION
index 53adb84..a7ee35a 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.8.2
+1.8.3
diff --git a/json.gemspec b/json.gemspec
index 3f7772a..0b40989 100644
--- a/json.gemspec
+++ b/json.gemspec
Binary files differ
diff --git a/json_pure.gemspec b/json_pure.gemspec
index 99288e7..3631d3c 100644
--- a/json_pure.gemspec
+++ b/json_pure.gemspec
@@ -1,9 +1,9 @@
# -*- encoding: utf-8 -*-
-# stub: json_pure 1.8.2 ruby lib
+# stub: json_pure 1.8.3 ruby lib
Gem::Specification.new do |s|
s.name = "json_pure"
- s.version = "1.8.2"
+ s.version = "1.8.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
diff --git a/lib/json/version.rb b/lib/json/version.rb
index 4549f5f..5a4013d 100644
--- a/lib/json/version.rb
+++ b/lib/json/version.rb
@@ -1,6 +1,6 @@
module JSON
# JSON version
- VERSION = '1.8.2'
+ VERSION = '1.8.3'
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: