File tree 3 files changed +11
-4
lines changed 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.1.1 (April 6th, 2010)
4
+ * added affected_rows method (mysql_affected_rows)
5
+ * added last_id method (last_insert_id)
6
+ * enable reconnect option by default
7
+ * added initial async query support
8
+ * updated extconf (thanks to the mysqlplus project) for easier gem building
9
+
3
10
## 0.1.0 (April 6th, 2010)
4
11
* initial release
Original file line number Diff line number Diff line change 3
3
4
4
# = Mysql2
5
5
#
6
- # A modern MySQL client library for Ruby, binding to libmysql
6
+ # A modern, simple and very fast Mysql library for Ruby - binding to libmysql
7
7
module Mysql2
8
- VERSION = "0.1.0 "
8
+ VERSION = "0.1.1 "
9
9
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.1.0 "
8
+ s . version = "0.1.1 "
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-04-06 }
12
+ s . date = %q{2010-04-07 }
13
13
14
14
s . extensions = [ "ext/extconf.rb" ]
15
15
s . extra_rdoc_files = [
You can’t perform that action at this time.
0 commit comments