We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 622adae commit e343a9fCopy full SHA for e343a9f
CHANGELOG.md
@@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
16
17
### Fixed
18
19
+- User display name accepts unicode letters
20
+
21
## [0.10.1] - 2017-11-15
22
23
prompts/prompts.go
@@ -19,7 +19,7 @@ import (
)
const (
- namePattern = "^[a-zA-Z\\s,\\.'\\-pL]{1,64}$"
+ namePattern = "^[a-zA-Z\\s,\\.'\\-\\pL]{1,64}$"
couponPattern = "^[0-9A-Z]{1,128}$"
24
codePattern = "^[0-9abcdefghjkmnpqrtuvwxyz]{16}$"
25
inviteTokenPattern = "^[a-zA-Z0-9_-]{52}$"
0 commit comments