Skip to content

Commit

Permalink
Version bump to 0.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmario committed Jan 11, 2011
1 parent 9f95083 commit eb801e7
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,20 @@
# Changelog

## 0.7.9 (January 11th, 2011)
* moved to rspec2
* fixed some compilation warnings on 1.9.3
* brought over latest from Yajl upstream
* finally removed the deprecated Yajl::Stream methods
* moved to rake-compiler
* moved to Bundler for development
* fix memory corruption bug when using :pretty => true and a custom indent string
* fixed memory leak when exceptions were being raised during a parse

## 0.7.8 (September 27th, 2010)
* fix a bug in chunked http response regex (thanks to http://github.com/kevn for catching this)
* Make sure json compability doesn't break ActiveSupport#to_json
* fix improper usage of rb_define_method

## 0.7.7 (July 12th, 2010)
* full string encoding support for 1.9, respecting Encoding.default_internal
* refactor the #to_json function bodies into a C macro
Expand Down
4 changes: 2 additions & 2 deletions VERSION.yml
@@ -1,5 +1,5 @@
---
:patch: 8
:build:
:patch: 9
:major: 0
:build:
:minor: 7
2 changes: 1 addition & 1 deletion lib/yajl.rb
Expand Up @@ -13,7 +13,7 @@
#
# Ruby bindings to the excellent Yajl (Yet Another JSON Parser) ANSI C library.
module Yajl
VERSION = "0.7.8"
VERSION = "0.7.9"

# For compatibility, has the same signature of Yajl::Parser.parse
def self.load(str_or_io, options={}, read_bufsize=nil, &block)
Expand Down
7 changes: 3 additions & 4 deletions yajl-ruby.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{yajl-ruby}
s.version = "0.7.8"
s.version = "0.7.9"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Brian Lopez", "Lloyd Hilaiel"]
s.date = %q{2010-12-19}
s.date = %q{2011-01-11}
s.email = %q{seniorlopez@gmail.com}
s.extensions = ["ext/yajl/extconf.rb"]
s.extra_rdoc_files = [
Expand Down Expand Up @@ -168,7 +168,7 @@ Gem::Specification.new do |s|
]
s.homepage = %q{http://github.com/brianmario/yajl-ruby}
s.require_paths = ["lib", "ext"]
s.rubygems_version = %q{1.3.7}
s.rubygems_version = %q{1.4.2}
s.summary = %q{Ruby C bindings to the excellent Yajl JSON stream-based parser library.}
s.test_files = [
"examples/encoding/chunked_encoding.rb",
Expand All @@ -195,7 +195,6 @@ Gem::Specification.new do |s|
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
Expand Down

0 comments on commit eb801e7

Please sign in to comment.