Bump version so we can release it
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
6fdf3301e1
commit
6374080d78
|
|
@ -1,6 +1,10 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## 0.6.1 – 2021-01-08
|
||||||
|
### Added
|
||||||
|
- Compatibility with Nextcloud 21 beta 5
|
||||||
|
|
||||||
## 0.6.0 – 2020-12-14
|
## 0.6.0 – 2020-12-14
|
||||||
### Added
|
### Added
|
||||||
- Allow forcing user name patterns and providing hints on the registration form and email (by @pxlfrk )
|
- Allow forcing user name patterns and providing hints on the registration form and email (by @pxlfrk )
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ This app allows users to register a new account.
|
||||||
4. User is lead to a form where they can choose their username and password
|
4. User is lead to a form where they can choose their username and password
|
||||||
5. New account is created and is logged in automatically
|
5. New account is created and is logged in automatically
|
||||||
]]></description>
|
]]></description>
|
||||||
<version>0.6.0</version>
|
<version>0.6.1</version>
|
||||||
<licence>agpl</licence>
|
<licence>agpl</licence>
|
||||||
<author mail="pellaeon@cnmc.tw" homepage="https://nyllep.wordpress.com/about-2">Pellaeon Lin</author>
|
<author mail="pellaeon@cnmc.tw" homepage="https://nyllep.wordpress.com/about-2">Pellaeon Lin</author>
|
||||||
<types>
|
<types>
|
||||||
|
|
|
||||||
|
|
@ -270,8 +270,6 @@ class RegistrationServiceTest extends TestCase {
|
||||||
* @depends testDuplicateUsernameApi
|
* @depends testDuplicateUsernameApi
|
||||||
*/
|
*/
|
||||||
public function testUsernameDoesntMatchPattern() {
|
public function testUsernameDoesntMatchPattern() {
|
||||||
|
|
||||||
|
|
||||||
$this->config->expects($this->atLeastOnce())
|
$this->config->expects($this->atLeastOnce())
|
||||||
->method('getAppValue')
|
->method('getAppValue')
|
||||||
->willReturnMap([
|
->willReturnMap([
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue