Skip to content

Commit 39cfbe9

Browse files
committed
updating files for 0.1.4 release
1 parent deb8f43 commit 39cfbe9

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

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

3+
## 0.1.4 (April 23rd, 2010)
4+
* optimization: implemented a local cache for rows that are lazily created in ruby during iteration. The MySQL C result is freed as soon as all the results have been cached
5+
* optimization: implemented a local cache for field names so every row reuses the same objects as field names/keys
6+
* refactor the Mysql2 connection adapter for ActiveRecord to not extend the Mysql adapter - now being a free-standing connection adapter
7+
38
## 0.1.3 (April 15th, 2010)
49
* added an EventMachine Deferrable API
510
* added an ActiveRecord connection adapter

lib/mysql2.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
#
66
# A modern, simple and very fast Mysql library for Ruby - binding to libmysql
77
module Mysql2
8-
VERSION = "0.1.3"
8+
VERSION = "0.1.4"
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.3"
8+
s.version = "0.1.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-04-15}
12+
s.date = %q{2010-04-23}
1313
s.email = %q{[email protected]}
1414
s.extensions = ["ext/extconf.rb"]
1515
s.extra_rdoc_files = [

0 commit comments

Comments
 (0)