File tree 3 files changed +12
-3
lines changed 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
12
## 0.2.4 (September 17th, 2010)
4
13
* a few patches for win32 support from Luis Lavena - thanks man!
5
14
* bugfix from Eric Wong to avoid a potential stack overflow during Mysql2::Client#escape
Original file line number Diff line number Diff line change 12
12
#
13
13
# A modern, simple and very fast Mysql library for Ruby - binding to libmysql
14
14
module Mysql2
15
- VERSION = "0.2.4 "
15
+ VERSION = "0.2.5 "
16
16
end
Original file line number Diff line number Diff line change 5
5
6
6
Gem ::Specification . new do |s |
7
7
s . name = %q{mysql2}
8
- s . version = "0.2.4 "
8
+ s . version = "0.2.5 "
9
9
10
10
s . required_rubygems_version = Gem ::Requirement . new ( ">= 0" ) if s . respond_to? :required_rubygems_version=
11
11
s . authors = [ "Brian Lopez" ]
12
- s . date = %q{2010-10-18 }
12
+ s . date = %q{2010-10-19 }
13
13
14
14
s . extensions = [ "ext/mysql2/extconf.rb" ]
15
15
s . extra_rdoc_files = [
You can’t perform that action at this time.
0 commit comments