From 97f08dc32c29624dd8bd103cf56dbfc4508fa5aa Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Mon, 7 Oct 2024 15:54:23 +0800 Subject: [PATCH] Version v2.9.5 --- DEVELOPMENT | 6 ++++++ Gemfile.lock | 2 +- lib/rails-settings/version.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 DEVELOPMENT diff --git a/DEVELOPMENT b/DEVELOPMENT new file mode 100644 index 0000000..9496af1 --- /dev/null +++ b/DEVELOPMENT @@ -0,0 +1,6 @@ +## Release Guides + +1. Change the `lib/rails-settings/version.rb` file to the new version number. +2. Run `bundle install` to make `Gemfile.lock` reflect the new version number. +3. Git commit with `Version vX.Y.Z`. +4. Run `rake release` to publish gem, this command will create a git tag for the version. diff --git a/Gemfile.lock b/Gemfile.lock index 85ba886..4dee50a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rails-settings-cached (2.9.4) + rails-settings-cached (2.9.5) activerecord (>= 5.0.0) railties (>= 5.0.0) diff --git a/lib/rails-settings/version.rb b/lib/rails-settings/version.rb index 06ff015..732bdfb 100644 --- a/lib/rails-settings/version.rb +++ b/lib/rails-settings/version.rb @@ -3,7 +3,7 @@ module RailsSettings class << self def version - "2.9.4" + "2.9.5" end end end