From 31bdf0b51daf83e7dbf34279236a5f11998650f5 Mon Sep 17 00:00:00 2001 From: Yinon Rousso Date: Mon, 17 Aug 2020 13:47:55 -0700 Subject: [PATCH 1/4] no_jira extend dependency to include rails 6 --- Gemfile.lock | 2 +- enum_column.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 2ac3db0..1a6278e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,7 +2,7 @@ PATH remote: . specs: activerecord-mysql-enum (0.1.0) - activerecord (>= 4.2, < 6) + activerecord (>= 4.2, < 7) GEM remote: https://rubygems.org/ diff --git a/enum_column.gemspec b/enum_column.gemspec index 6d2e430..0026ca9 100644 --- a/enum_column.gemspec +++ b/enum_column.gemspec @@ -28,5 +28,5 @@ Gem::Specification.new do |spec| end spec.require_paths = ["lib"] - spec.add_dependency 'activerecord', '>= 4.2', '< 6' + spec.add_dependency 'activerecord', '>= 4.2', '< 7' end From bb45476d505b3b8c47a0eaefb74efd9a8920ba48 Mon Sep 17 00:00:00 2001 From: Yinon Rousso Date: Mon, 17 Aug 2020 14:26:19 -0700 Subject: [PATCH 2/4] Release v0.1.1.pre --- CHANGELOG.md | 4 ++++ Gemfile.lock | 2 +- lib/active_record/mysql/enum/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f0bc33..57d2ec8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.1.1.pre] - 2020-08-17 +### Added +- added rails 6 in dependency range + ## [0.1.0] - 2020-08-17 ### Added - Backwards compatibility with Rails 4 diff --git a/Gemfile.lock b/Gemfile.lock index 1a6278e..15e1c7f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - activerecord-mysql-enum (0.1.0) + activerecord-mysql-enum (0.1.1.pre) activerecord (>= 4.2, < 7) GEM diff --git a/lib/active_record/mysql/enum/version.rb b/lib/active_record/mysql/enum/version.rb index 47584a9..6add38b 100644 --- a/lib/active_record/mysql/enum/version.rb +++ b/lib/active_record/mysql/enum/version.rb @@ -3,7 +3,7 @@ module ActiveRecord module Mysql module Enum - VERSION = "0.1.0" + VERSION = "0.1.1.pre" end end end From 0e24b662561b9d1dbab8fb835e801bc0aab865e6 Mon Sep 17 00:00:00 2001 From: Yinon Rousso Date: Tue, 18 Aug 2020 07:38:21 -0700 Subject: [PATCH 3/4] Release v0.1.1.pre.1 --- CHANGELOG.md | 2 +- Gemfile.lock | 2 +- lib/active_record/mysql/enum/version.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57d2ec8..fe497c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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.1.1.pre] - 2020-08-17 +## [0.1.1.pre.1] - 2020-08-18 ### Added - added rails 6 in dependency range diff --git a/Gemfile.lock b/Gemfile.lock index 15e1c7f..2dda941 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - activerecord-mysql-enum (0.1.1.pre) + activerecord-mysql-enum (0.1.1.pre.1) activerecord (>= 4.2, < 7) GEM diff --git a/lib/active_record/mysql/enum/version.rb b/lib/active_record/mysql/enum/version.rb index 6add38b..692fcc6 100644 --- a/lib/active_record/mysql/enum/version.rb +++ b/lib/active_record/mysql/enum/version.rb @@ -3,7 +3,7 @@ module ActiveRecord module Mysql module Enum - VERSION = "0.1.1.pre" + VERSION = "0.1.1.pre.1" end end end From 9c1452d6ad2663c798897dea9450aeb8650d6acb Mon Sep 17 00:00:00 2001 From: Yinon Rousso Date: Tue, 18 Aug 2020 08:01:37 -0700 Subject: [PATCH 4/4] Release v0.1.1 --- CHANGELOG.md | 4 ++-- Gemfile.lock | 2 +- lib/active_record/mysql/enum/version.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe497c9..fb55d38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,9 @@ 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.1.1.pre.1] - 2020-08-18 +## [0.1.1] - 2020-08-18 ### Added -- added rails 6 in dependency range +- extended activerecord dependency to '>= 4.2', '< 7' ## [0.1.0] - 2020-08-17 ### Added diff --git a/Gemfile.lock b/Gemfile.lock index 2dda941..4baa4d5 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - activerecord-mysql-enum (0.1.1.pre.1) + activerecord-mysql-enum (0.1.1) activerecord (>= 4.2, < 7) GEM diff --git a/lib/active_record/mysql/enum/version.rb b/lib/active_record/mysql/enum/version.rb index 692fcc6..4e3d8b6 100644 --- a/lib/active_record/mysql/enum/version.rb +++ b/lib/active_record/mysql/enum/version.rb @@ -3,7 +3,7 @@ module ActiveRecord module Mysql module Enum - VERSION = "0.1.1.pre.1" + VERSION = "0.1.1" end end end