From 2534f6cb8024a569b6b00d2815ad85e66e7a4e56 Mon Sep 17 00:00:00 2001
From: Thomas von Deyen <thomas@vondeyen.com>
Date: Mon, 1 Apr 2019 22:55:21 +0200
Subject: [PATCH] v4.2.0

- Do not store screen size at login [#78](https://github.com/AlchemyCMS/alchemy-devise/pull/78) ([tvdeyen](https://github.com/tvdeyen))
- Security: Use at least Devise 4.6 [#78](https://github.com/AlchemyCMS/alchemy-devise/pull/78) ([tvdeyen](https://github.com/tvdeyen))
- Fix dummy app rails version [#76](https://github.com/AlchemyCMS/alchemy-devise/pull/76) ([tvdeyen](https://github.com/tvdeyen))
- Fix translation key on user admin page [#75](https://github.com/AlchemyCMS/alchemy-devise/pull/75) ([mamhoff](https://github.com/mamhoff))
---
 README.md                     | 6 +-----
 lib/alchemy/devise/version.rb | 2 +-
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index 54e33f8..583e631 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,6 @@
 
 [![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)
 
-**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/4.1.0), or the [latest stable branch (4.2-stable)](https://github.com/AlchemyCMS/alchemy-devise/tree/4.2-stable).**
-
 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.
 
 ## Install
@@ -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.2-stable'
 ```
 
-**NOTE:** You normally want to use a stable branch, like `4.2-stable`.
-
 and run `bundle install`.
 
 Then run the installer:
diff --git a/lib/alchemy/devise/version.rb b/lib/alchemy/devise/version.rb
index 96be6a0..504c252 100644
--- a/lib/alchemy/devise/version.rb
+++ b/lib/alchemy/devise/version.rb
@@ -1,5 +1,5 @@
 module Alchemy
   module Devise
-    VERSION = "4.1.0"
+    VERSION = "4.2.0"
   end
 end