Skip to content

Commit

Permalink
V2.0.19
Browse files Browse the repository at this point in the history
Merge pull request #91 from Daniel-Ioannou/v2.0.19
closed:  #81
  • Loading branch information
Daniel-Ioannou committed Oct 18, 2023
2 parents eafb498 + 048b87a commit 0b3b4eb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.0.19
* Fix Kazakhstan Tenge decimal separator
* Fix Barbados Dollar plural name
* Fix Vietnamese Dong decimal separator

## 2.0.18
* Add more currencies:
- Maldivian Rufiyaa
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A flutter package to select a currency from a list of currencies.
Add the package to your pubspec.yaml:

```yaml
currency_picker: ^2.0.18
currency_picker: ^2.0.19
```

In your dart file, import the library:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ packages:
path: ".."
relative: true
source: path
version: "2.0.18"
version: "2.0.19"
fake_async:
dependency: transitive
description:
Expand Down
8 changes: 4 additions & 4 deletions lib/src/currencies.dart
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ List<Map<String, dynamic>> currencies = [
"flag": "BBD",
"decimal_digits": 2,
"number": 52,
"name_plural": "Zimbabwean dollars",
"name_plural": "Barbados dollars",
"thousands_separator": ",",
"decimal_separator": ".",
"space_between_amount_and_symbol": false,
Expand Down Expand Up @@ -958,7 +958,7 @@ List<Map<String, dynamic>> currencies = [
"number": 398,
"name_plural": "Kazakhstani tenges",
"thousands_separator": " ",
"decimal_separator": "-",
"decimal_separator": ",",
"space_between_amount_and_symbol": false,
"symbol_on_left": true,
},
Expand Down Expand Up @@ -1458,14 +1458,14 @@ List<Map<String, dynamic>> currencies = [
},
{
"code": "VND",
"name": "Viet Nam Dong",
"name": "Vietnamese Dong",
"symbol": "₫",
"flag": "VND",
"decimal_digits": 0,
"number": 704,
"name_plural": "Vietnamese dong",
"thousands_separator": ".",
"decimal_separator": ".",
"decimal_separator": ",",
"space_between_amount_and_symbol": true,
"symbol_on_left": false,
},
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A flutter package to select a currency from a list of currencies.
homepage: https://github.com/Daniel-Ioannou
repository: https://github.com/Daniel-Ioannou/flutter_currency_picker

version: 2.0.18
version: 2.0.19

environment:
sdk: '>=2.12.0 <4.0.0'
Expand Down

0 comments on commit 0b3b4eb

Please sign in to comment.