diff options
author | Azul <azul@riseup.net> | 2017-12-04 09:03:00 +0100 |
---|---|---|
committer | Azul <azul@riseup.net> | 2017-12-04 09:03:00 +0100 |
commit | 90c3fc431133cf18d83afd8e394e45c0bd5f63ac (patch) | |
tree | 40539d0dd340c9d3df7164014f3f9ccdd4551fc9 | |
parent | 66ad2c7bd477b7d3f887aeede8963b1ec9d4c479 (diff) |
Version 0.9.3 - bugfixes0.9.3version/0.9
* on invalid key upload respond with error and 422 response code
* fix alternate email address dialogue
* publish public key in webfinger
* update translations from transifex
* hand out config.json without auth
* sanity checks on user params
* cleanup temp invites from server tests so they do not clutter admin ui
-rw-r--r-- | CHANGES.md | 25 | ||||
-rw-r--r-- | lib/leap_web/version.rb | 2 |
2 files changed, 26 insertions, 1 deletions
@@ -1,3 +1,28 @@ +Version 0.9.3 - bugfixes +------------------------ + +* on invalid key upload respond with error and 422 response code +* fix alternate email address dialogue +* publish public key in webfinger +* update translations from transifex +* hand out config.json without auth +* sanity checks on user params +* cleanup temp invites from server tests so they do not clutter admin ui + +Version 0.9.2 - bugfixes and invite code tweaks +----------------------------------------------- + +Features: + +* destroy invites used to create test accounts +* sort invite codes by last update + +Bugfix release for 0.9: + +* pin to the newest psych gem +* remove better_errors gem +* fix login error message with non en locales + version 0.9.1 - bugfixes ------------------------ diff --git a/lib/leap_web/version.rb b/lib/leap_web/version.rb index fcce54a..0a81cdf 100644 --- a/lib/leap_web/version.rb +++ b/lib/leap_web/version.rb @@ -1,3 +1,3 @@ module LeapWeb - VERSION = "0.9.2" unless defined?(LeapWeb::VERSION) + VERSION = "0.9.3" unless defined?(LeapWeb::VERSION) end |