Skip to content

Commit db4c71a

Browse files
committed
Bump version to 1.8.3
1 parent ec0b0a7 commit db4c71a

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

CHANGES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2015-06-01 (1.8.3)
2+
* Fix potential memory leak, thx to nobu.
13
2015-01-08 (1.8.2)
24
* Some performance improvements by Vipul A M <[email protected]>.
35
* Fix by Jason R. Clark <[email protected]> to avoid mutation of

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.2
1+
1.8.3

json.gemspec

0 Bytes
Binary file not shown.

json_pure.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# -*- encoding: utf-8 -*-
2-
# stub: json_pure 1.8.2 ruby lib
2+
# stub: json_pure 1.8.3 ruby lib
33

44
Gem::Specification.new do |s|
55
s.name = "json_pure"
6-
s.version = "1.8.2"
6+
s.version = "1.8.3"
77

88
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
99
s.require_paths = ["lib"]

lib/json/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module JSON
22
# JSON version
3-
VERSION = '1.8.2'
3+
VERSION = '1.8.3'
44
VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
55
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
66
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:

0 commit comments

Comments
 (0)