From 8ab043e51b1ef911444eb426cd215abff1f731d3 Mon Sep 17 00:00:00 2001 From: Chris Salzberg Date: Tue, 3 Nov 2020 16:47:54 +0900 Subject: [PATCH] Release 1.0.0.beta.1 --- README.md | 6 +++--- lib/mobility/version.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0c22fef2d..71b7b19c4 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Mobility [wiki]: https://github.com/shioyama/mobility/wiki **This is the readme for the [`master`](https://github.com/shioyama/mobility) -branch, which corresponds to v1.0.0.alpha, a pre-release version of Mobility. +branch, which corresponds to v1.0.0.beta, a pre-release version of Mobility. If you are using an earlier version (0.8.x or earlier), you probably want the readme on the [0-8-stable branch](https://github.com/shioyama/mobility/tree/0-8-stable).** @@ -54,11 +54,11 @@ section of the wiki. Installation ------------ -To use the latest (unreleased) version of Mobility, add this line to your +To use the latest pre-version of Mobility 1.0, add this line to your application's Gemfile: ```ruby -gem 'mobility', git: 'https://github.com/shioyama/mobility.git' +gem 'mobility', '~> 1.0.0.beta.1' ``` 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 dc6eec53c..af95efda0 100644 --- a/lib/mobility/version.rb +++ b/lib/mobility/version.rb @@ -9,7 +9,7 @@ module VERSION MAJOR = 1 MINOR = 0 TINY = 0 - PRE = "alpha" + PRE = "beta.1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end