From a1ed6a3914fc649ff2c93fe803fb16bf625ab3fd Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Mon, 6 Nov 2017 10:34:19 +0100 Subject: [PATCH] v4.0 --- .travis.yml | 2 +- README.md | 12 ++++-------- lib/alchemy/devise/version.rb | 2 +- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 98f50cd..bccd5f4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ rvm: - 2.4.1 branches: only: - - master + - 4.0-stable before_install: - gem install bundler before_script: bundle exec rake alchemy:spec:prepare diff --git a/README.md b/README.md index 6466eb6..a9e6ff1 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,8 @@ -## Devise based authentication for Alchemy 4.0 +## Devise based authentication for AlchemyCMS 4.0 -[![Build Status](https://secure.travis-ci.org/AlchemyCMS/alchemy-devise.svg?branch=master)](http://travis-ci.org/AlchemyCMS/alchemy-devise) +[![Build Status](https://secure.travis-ci.org/AlchemyCMS/alchemy-devise.svg?branch=4.0-stable)](http://travis-ci.org/AlchemyCMS/alchemy-devise) -[![Gem Version](https://badge.fury.io/rb/alchemy-devise.svg)](http://badge.fury.io/rb/alchemy-devise) [![Test Coverage](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/badges/coverage.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/coverage) [![Code Climate](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/badges/gpa.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy-devise) [![security](https://hakiri.io/github/AlchemyCMS/alchemy-devise/master.svg)](https://hakiri.io/github/AlchemyCMS/alchemy-devise/master) [![Dependency Status](https://gemnasium.com/AlchemyCMS/alchemy-devise.svg)](https://gemnasium.com/AlchemyCMS/alchemy-devise) - -**CAUTION: This master branch is a development branch that can contain bugs. For productive environments you should use the [current Ruby gem version](https://rubygems.org/gems/alchemy-devise/versions/3.5.0), or the [latest stable branch (3.5-stable)](https://github.com/AlchemyCMS/alchemy-devise/tree/3.5-stable).** +[![Gem Version](https://badge.fury.io/rb/alchemy-devise.svg)](http://badge.fury.io/rb/alchemy-devise) [![Test Coverage](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/badges/coverage.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/coverage) [![Code Climate](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/badges/gpa.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy-devise) [![security](https://hakiri.io/github/AlchemyCMS/alchemy-devise/4.0-stable.svg)](https://hakiri.io/github/AlchemyCMS/alchemy-devise/4.0-stable) [![Dependency Status](https://gemnasium.com/AlchemyCMS/alchemy-devise.svg)](https://gemnasium.com/AlchemyCMS/alchemy-devise) AlchemyCMS has no authentication in its core. So it is possibly to bring your own authentication and use it to authorize users in AlchemyCMS. If you don't have your own authentication, you can use this gem. @@ -14,11 +12,9 @@ Just put the gem into your projects `Gemfile`. ```ruby # Gemfile -gem 'alchemy-devise', github: 'AlchemyCMS/alchemy-devise', branch: 'master' +gem 'alchemy-devise', github: 'AlchemyCMS/alchemy-devise', branch: '4.0-stable' ``` -**NOTE:** You normally want to use a stable branch, like `3.5-stable`. - and run `bundle install`. Then run the installer: diff --git a/lib/alchemy/devise/version.rb b/lib/alchemy/devise/version.rb index 9ce00a4..2f4a674 100644 --- a/lib/alchemy/devise/version.rb +++ b/lib/alchemy/devise/version.rb @@ -1,5 +1,5 @@ module Alchemy module Devise - VERSION = "4.0.0.beta" + VERSION = "4.0.0" end end