Skip to content

Commit 05df9e3

Browse files
committed
update files for 0.2.5 release
1 parent 60fd02e commit 05df9e3

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.5 (October 19th, 2010)
4+
* fixes for easier Win32 binary gem deployment for targeting 1.8 and 1.9 in the same gem
5+
* refactor of connection checks and management to avoid race conditions with the GC/threading to prevent the unexpected loss of connections
6+
* update the default flags during connection
7+
* add support for setting wait_timeout on AR adapter
8+
* upgrade to rspec2
9+
* bugfix for an edge case where the GC would clean up a Mysql2::Client object before the underlying MYSQL pointer had been initialized
10+
* fix to CFLAGS to allow compilation on SPARC with sunstudio compiler - Anko painting <[email protected]>
11+
312
## 0.2.4 (September 17th, 2010)
413
* a few patches for win32 support from Luis Lavena - thanks man!
514
* bugfix from Eric Wong to avoid a potential stack overflow during Mysql2::Client#escape

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.4"
15+
VERSION = "0.2.5"
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.4"
8+
s.version = "0.2.5"
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-10-18}
12+
s.date = %q{2010-10-19}
1313
s.email = %q{[email protected]}
1414
s.extensions = ["ext/mysql2/extconf.rb"]
1515
s.extra_rdoc_files = [

0 commit comments

Comments
 (0)