Skip to content

Commit

Permalink
prepare for full release
Browse files Browse the repository at this point in the history
  • Loading branch information
ttstarck committed Aug 19, 2024
1 parent ba1ed47 commit d09f23e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.1] - 2024-08-19
### Fixed
- Fixed bugs in Rails 6.1.

## [0.2.0] - 2023-01-12
### Added
- Added support for Rails 6+ by adding knowledge of lazy transactions to the adapter.
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
fibered_mysql2 (0.2.0)
fibered_mysql2 (0.2.1)
em-synchrony (~> 1.0)
rails (>= 5.2, < 7)

Expand Down
10 changes: 5 additions & 5 deletions gemfiles/rails_6_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ gem "appraisal"
gem "appraisal-matrix"
gem "coveralls", require: false
gem "mysql2", "~> 0.5"
gem "nokogiri", "< 1.13"
gem "pry", "~> 0.13"
gem "pry-byebug", "~> 3.9"
gem "rake", "~> 13.0"
gem "rspec", "~> 3.0"
gem "nokogiri"
gem "pry"
gem "pry-byebug"
gem "rake"
gem "rspec"
gem "rails", "~> 6.0.0"

gemspec path: "../"
10 changes: 5 additions & 5 deletions gemfiles/rails_6_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ gem "appraisal"
gem "appraisal-matrix"
gem "coveralls", require: false
gem "mysql2", "~> 0.5"
gem "nokogiri", "< 1.13"
gem "pry", "~> 0.13"
gem "pry-byebug", "~> 3.9"
gem "rake", "~> 13.0"
gem "rspec", "~> 3.0"
gem "nokogiri"
gem "pry"
gem "pry-byebug"
gem "rake"
gem "rspec"
gem "rails", "~> 6.1.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion lib/fibered_mysql2/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module FiberedMysql2
VERSION = "0.2.0"
VERSION = "0.2.1"
end

0 comments on commit d09f23e

Please sign in to comment.