Skip to content

Commit 815098f

Browse files
authored
Merge pull request #1124 from s-mage/main
Improve Serbian Dinar formatting
2 parents e2865a9 + 017fb65 commit 815098f

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Upcoming 7.0.0.alpha
44

55
- Require Ruby >= 3.1 and I18n ~> 1.9
6+
- **Potential breaking change**: Fix RSD (Serbian Dinar) formatting to be like `12.345,42 RSD`
67
- **Potential breaking change**: Fix USDC decimals places from 2 to 6
78
- Expose Money::VERSION
89
- **Potential breaking change**: Fix MGA (Malagasy Ariary) to be a zero-decimal currency (changing subunit_to_unit from 5 to 1)

config/currency_iso.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1810,14 +1810,14 @@
18101810
"priority": 100,
18111811
"iso_code": "RSD",
18121812
"name": "Serbian Dinar",
1813-
"symbol": "РСД",
1814-
"alternate_symbols": ["RSD", "din", "дин"],
1813+
"symbol": "RSD",
1814+
"alternate_symbols": ["РСД", "din", "дин", "din.", "DIN", "Din", "дин."],
18151815
"subunit": "Para",
18161816
"subunit_to_unit": 100,
1817-
"symbol_first": true,
1817+
"symbol_first": false,
18181818
"html_entity": "",
1819-
"decimal_mark": ".",
1820-
"thousands_separator": ",",
1819+
"decimal_mark": ",",
1820+
"thousands_separator": ".",
18211821
"iso_numeric": "941",
18221822
"smallest_denomination": 100
18231823
},

0 commit comments

Comments
 (0)