Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pkgs/intl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
* Fix parsing of locale strings containing script codes in `verifiedLocale`.
For example, `zh-Hans-CN` would have been previously parsed as `zh`, but is
now parsed as `zh_CN`.
* Update the Ghanaian Cedis (GHS) currency symbol in `simpleCurrencySymbols`
from "GHS" to "GH₵(U+20B5)".

## 0.20.2
* Remove the dependency on `package:http`.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/intl/lib/src/intl/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ final Map<String, String> simpleCurrencySymbols = {
'ETB': 'Birr',
'VEF': 'Bs',
'BOB': 'Bs',
'GHS': 'GHS',
'GHS': 'GH\u20B5',
'CRC': '\u20a1',
'NIO': r'C$',
'GMD': 'GMD',
Expand Down