From 103abe0378358dbccc17988c9fa2155fdeaa6643 Mon Sep 17 00:00:00 2001 From: Chris Salzberg Date: Tue, 3 Nov 2020 16:57:22 +0900 Subject: [PATCH] Rename v1.0.0.beta.1 to v1.0.0.beta1 --- CHANGELOG.md | 2 +- README.md | 2 +- lib/mobility/version.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb701cf87..bd3e2f2f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 1.0 is a rewrite of many internals of the gem. Please see the [wiki page on v1.0](https://github.com/shioyama/mobility/wiki/Introduction-to-Mobility-v1.0) for more details on how to upgrade. -## 1.0.0.beta.1 (pre-release) +## 1.0.0.beta1 (pre-release) - Remove `Mobility::Backend#apply_plugin` ([#454](https://github.com/shioyama/mobility/pull/454)) diff --git a/README.md b/README.md index 71b7b19c4..7b5062e19 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ To use the latest pre-version of Mobility 1.0, add this line to your application's Gemfile: ```ruby -gem 'mobility', '~> 1.0.0.beta.1' +gem 'mobility', '~> 1.0.0.beta1' ``` For the latest stable version of Mobility, see the readme on the diff --git a/lib/mobility/version.rb b/lib/mobility/version.rb index af95efda0..c8637c687 100644 --- a/lib/mobility/version.rb +++ b/lib/mobility/version.rb @@ -9,7 +9,7 @@ module VERSION MAJOR = 1 MINOR = 0 TINY = 0 - PRE = "beta.1" + PRE = "beta1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end