Skip to content

Commit ea9b21f

Browse files
committed
update files for 0.1.1 release
1 parent a9df890 commit ea9b21f

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

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

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+
310
## 0.1.0 (April 6th, 2010)
411
* initial release

lib/mysql2.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# = Mysql2
55
#
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
77
module Mysql2
8-
VERSION = "0.1.0"
8+
VERSION = "0.1.1"
99
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.1.0"
8+
s.version = "0.1.1"
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-04-06}
12+
s.date = %q{2010-04-07}
1313
s.email = %q{[email protected]}
1414
s.extensions = ["ext/extconf.rb"]
1515
s.extra_rdoc_files = [

0 commit comments

Comments
 (0)