Skip to content

Commit

Permalink
prepare for 0.2.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmario committed Sep 17, 2010
1 parent 26650c8 commit 5077516
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
* 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
Expand Down
2 changes: 1 addition & 1 deletion lib/mysql2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
#
# A modern, simple and very fast Mysql library for Ruby - binding to libmysql
module Mysql2
VERSION = "0.2.3"
VERSION = "0.2.4"
end
4 changes: 2 additions & 2 deletions mysql2.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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{[email protected]}
s.extensions = ["ext/mysql2/extconf.rb"]
s.extra_rdoc_files = [
Expand Down

0 comments on commit 5077516

Please sign in to comment.