From 5ba022cf66c0f50215e7ac0a3cdf932921fb0d80 Mon Sep 17 00:00:00 2001 From: Brian Lopez Date: Wed, 19 Aug 2009 22:56:39 -0700 Subject: [PATCH] updating files for release --- CHANGELOG.md | 4 ++++ lib/yajl.rb | 2 +- yajl-ruby.gemspec | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c297721f..bfe5e951 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.6.0 (August 19th, 2009) +* Added POST, PUT and DELETE support to Yajl::HttpStream +** POST support initially contributed by jdg (http://github.com/jdg) - Although oortle (http://github.com/oortle) coded it up in a fork with it as well. + ## 0.5.12 (July 31st, 2009) * Add another option that can be passed to Yajl::Encoder's constructor (:terminator) to allow the caller some control over when a full JSON string has been generated by the encoder. More information on it's use in the README diff --git a/lib/yajl.rb b/lib/yajl.rb index 1b927d7e..04049776 100644 --- a/lib/yajl.rb +++ b/lib/yajl.rb @@ -13,7 +13,7 @@ # # Ruby bindings to the excellent Yajl (Yet Another JSON Parser) ANSI C library. module Yajl - VERSION = "0.5.12" + VERSION = "0.6.0" class Parser # A helper method for parse-and-forget use-cases diff --git a/yajl-ruby.gemspec b/yajl-ruby.gemspec index 7ce975fd..d891e8c5 100644 --- a/yajl-ruby.gemspec +++ b/yajl-ruby.gemspec @@ -5,7 +5,7 @@ Gem::Specification.new do |s| s.name = %q{yajl-ruby} - s.version = "0.5.12" + s.version = "0.6.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Brian Lopez", "Lloyd Hilaiel"]