Skip to content

Commit 5077516

Browse files
committed
prepare for 0.2.4 release
1 parent 26650c8 commit 5077516

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 0.2.4 (September 17th, 2010)
4+
* a few patches for win32 support from Luis Lavena - thanks man!
5+
* bugfix from Eric Wong to avoid a potential stack overflow during Mysql2::Client#escape
6+
* added the ability to turn internal row caching on/off via the :cache_rows => true/false option
7+
* a couple of small patches for rbx compatibility
8+
* set IndexDefinition#length in AR adapter - Kouhei Yanagita <[email protected]>
9+
* fix a long-standing data corruption bug - thank you thank you thank you to @joedamato (http://github.com/ice799)
10+
* bugfix from calling mysql_close on a closed/freed connection surfaced by the above fix
11+
312
## 0.2.3 (August 20th, 2010)
413
* connection flags can now be passed to the constructor via the :flags key
514
* switch AR adapter connection over to use FOUND_ROWS option

lib/mysql2.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
#
1313
# A modern, simple and very fast Mysql library for Ruby - binding to libmysql
1414
module Mysql2
15-
VERSION = "0.2.3"
15+
VERSION = "0.2.4"
1616
end

mysql2.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
Gem::Specification.new do |s|
77
s.name = %q{mysql2}
8-
s.version = "0.2.3"
8+
s.version = "0.2.4"
99

1010
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1111
s.authors = ["Brian Lopez"]
12-
s.date = %q{2010-08-20}
12+
s.date = %q{2010-09-17}
1313
s.email = %q{[email protected]}
1414
s.extensions = ["ext/mysql2/extconf.rb"]
1515
s.extra_rdoc_files = [

0 commit comments

Comments
 (0)