From 50775163edd1dbe9160e3acfa0e25c8d59ad844f Mon Sep 17 00:00:00 2001 From: Brian Lopez Date: Fri, 17 Sep 2010 10:19:16 -0700 Subject: [PATCH] prepare for 0.2.4 release --- CHANGELOG.md | 9 +++++++++ lib/mysql2.rb | 2 +- mysql2.gemspec | 4 ++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f413d2..63d3e38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.2.4 (September 17th, 2010) +* a few patches for win32 support from Luis Lavena - thanks man! +* bugfix from Eric Wong to avoid a potential stack overflow during Mysql2::Client#escape +* added the ability to turn internal row caching on/off via the :cache_rows => true/false option +* a couple of small patches for rbx compatibility +* set IndexDefinition#length in AR adapter - Kouhei Yanagita +* fix a long-standing data corruption bug - thank you thank you thank you to @joedamato (http://github.com/ice799) +* bugfix from calling mysql_close on a closed/freed connection surfaced by the above fix + ## 0.2.3 (August 20th, 2010) * connection flags can now be passed to the constructor via the :flags key * switch AR adapter connection over to use FOUND_ROWS option diff --git a/lib/mysql2.rb b/lib/mysql2.rb index 52ae5a5..b6584de 100644 --- a/lib/mysql2.rb +++ b/lib/mysql2.rb @@ -12,5 +12,5 @@ require 'mysql2/result' # # A modern, simple and very fast Mysql library for Ruby - binding to libmysql module Mysql2 - VERSION = "0.2.3" + VERSION = "0.2.4" end diff --git a/mysql2.gemspec b/mysql2.gemspec index e49757f..75a9b8a 100644 --- a/mysql2.gemspec +++ b/mysql2.gemspec @@ -5,11 +5,11 @@ Gem::Specification.new do |s| s.name = %q{mysql2} - s.version = "0.2.3" + s.version = "0.2.4" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Brian Lopez"] - s.date = %q{2010-08-20} + s.date = %q{2010-09-17} s.email = %q{seniorlopez@gmail.com} s.extensions = ["ext/mysql2/extconf.rb"] s.extra_rdoc_files = [