mysql2 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/CHANGELOG.md +3 -0
  2. data/VERSION +1 -1
  3. data/lib/mysql2.rb +1 -1
  4. data/mysql2.gemspec +1 -1
  5. metadata +3 -3
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.6 (October 19th, 2010)
4
+ * version bump since the 0.2.5 win32 binary gems were broken
5
+
3
6
  ## 0.2.5 (October 19th, 2010)
4
7
  * fixes for easier Win32 binary gem deployment for targeting 1.8 and 1.9 in the same gem
5
8
  * refactor of connection checks and management to avoid race conditions with the GC/threading to prevent the unexpected loss of connections
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.5
1
+ 0.2.6
@@ -12,5 +12,5 @@ require 'mysql2/result'
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.5"
15
+ VERSION = "0.2.6"
16
16
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{mysql2}
8
- s.version = "0.2.5"
8
+ s.version = "0.2.6"
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"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mysql2
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 5
10
- version: 0.2.5
9
+ - 6
10
+ version: 0.2.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Brian Lopez