countries 5.7.0 → 5.7.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md DELETED
@@ -1,776 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- This project adheres to [Semantic Versioning](https://semver.org/).
5
-
6
- ## [5.7.0](https://github.com/countries/countries/releases/tag/v5.7.0') (2023/10/07 10:57 +00:00)
7
-
8
- **New Feature:**
9
- * Add distance_unit attribute to countries data [\#820](https://github.com/countries/countries/pull/820) ([dwtong](https://github.com/dwtong))
10
-
11
- **Fixes:**
12
- * North Macedonia LT translation [\#821](https://github.com/countries/countries/pull/821) ([tomukas](https://github.com/tomukas))
13
- * Fix Azerbaijão wording in pt-BR [\#819](https://github.com/countries/countries/pull/819) ([duduribeiro](https://github.com/duduribeiro))
14
- * Remove duplicate key in subdivisions/US.yaml [\#822](https://github.com/countries/countries/pull/822) ([pioz](https://github.com/pioz))
15
-
16
-
17
- ## [5.6.0](https://github.com/countries/countries/releases/tag/v5.6.0') (2023/08/01 14:00 +00:00)
18
-
19
- * Fix Taiwan's iso_long_name not matching ISO data. [\#810](https://github.com/countries/countries/pull/810) ([pmor](https://github.com/pmor))
20
- * Wrap postal code format regex in anchors [\#814](https://github.com/countries/countries/pull/814) ([pmor](https://github.com/pmor))
21
-
22
- ## [5.5.0](https://github.com/countries/countries/releases/tag/v5.5.0') (2023/06/17 16:20 +00:00)
23
-
24
- * Added G20 and G7 member fields [\#799](https://github.com/countries/countries/pull/799) ([AndromedaSugar](https://github.com/AndromedaSugar))
25
- * Update subdivision translations from CLDR [\#802](https://github.com/countries/countries/pull/802) ([pmor](https://github.com/pmor))
26
- * Adds Country#collect_countries_with, Country#collect_likely_subdivisions, Country.find_subdivision_with, Country.find_subdivision_code_with_translations [\#800](https://github.com/countries/countries/pull/800) ([pmor](https://github.com/pmor))
27
- * Add Japanese translation to subdivisions data [\#804](https://github.com/countries/countries/pull/804) ([shucream-p](https://github.com/shucream-p))
28
- * Adding gdpr_compliant method to check if a country is regulated by GDPR [\#807](https://github.com/countries/countries/pull/807) ([yeseniamolinab](https://github.com/yeseniamolinab))
29
-
30
- ## [5.4.0](https://github.com/countries/countries/releases/tag/v5.4.0') (2023/04/12 12:44 +00:00)
31
-
32
- * fix: RUP are part of the European Union [\#794](https://github.com/countries/countries/pull/794) ([btrd](https://github.com/btrd))
33
- * Fix wrong translation of MY in gn locale [\#798](https://github.com/countries/countries/pull/798) ([pmor](https://github.com/pmor))
34
- * Add EU VAT Area membership [\#796](https://github.com/countries/countries/pull/796) ([pmor](https://github.com/pmor))
35
-
36
- ## [5.3.2](https://github.com/countries/countries/releases/tag/v5.3.2') (2023/03/31 13:46 +00:00)
37
-
38
- * Add Japanese translation for Czechia, North Macedonia and Eswatini [\#795](https://github.com/countries/countries/pull/795) ([nmbakfm](https://github.com/nmbakfm))
39
-
40
- ## [5.3.1](https://github.com/countries/countries/releases/tag/v5.3.1') (2023/01/26 14:05 +00:00)
41
-
42
- * Update countries-th.yaml [\#792](https://github.com/countries/countries/pull/792) ([worrawutp](https://github.com/worrawutp))
43
- * Fix [\#765](https://github.com/countries/countries/issues/765) - Restore `Australia` as first unnoficial name for Australia ([pmor](https://github.com/pmor))
44
-
45
-
46
- **Full Changelog**: https://github.com/countries/countries/compare/v5.3.0...v5.3.1
47
-
48
- ## [5.3.0](https://github.com/countries/countries/releases/tag/v5.3.0') (2023/01/03 17:02 +00:00)
49
-
50
- **Merged pull requests:**
51
-
52
- * Remove dead code: KwargStruct [\#787](https://github.com/countries/countries/pull/787) ([pmor](https://github.com/pmor))
53
- * Update data for Turkmenistan and add Turkmen translation [\#789](https://github.com/countries/countries/pull/789) ([msuliq](https://github.com/msuliq))
54
- * Add Country#subdivision_names method [\#788](https://github.com/countries/countries/pull/788) ([pmor](https://github.com/pmor))
55
-
56
- ## [5.2.1](https://github.com/countries/countries/releases/tag/v5.2.1') (2022/12/22 15:29 +00:00)
57
-
58
- **Important changes**
59
-
60
- * The Republic of Croatia will join the Eurozone and switch currency to `EUR` in Jan 1 2023. If you update this gem before that date and need to have correct currency codes as of 2022, I recommend using an initializer to re-register Croatia with `HRK`, which you could wrap with a check of the current date, eg:
61
-
62
- ```ruby
63
- # In an initializer
64
- if Date.today.year == 2022
65
- new_data = ISO3166::Country['HR'].data
66
- new_data.transform_keys! &:to_sym
67
- new_data[:currency_code] = 'HRK'
68
- ISO3166::Data.register new_data
69
- end
70
- ```
71
-
72
- **Merged pull requests:**
73
-
74
- * Fix changelog to point to correct PR [\#778](https://github.com/countries/countries/pull/778) ([carlosantoniodasilva](https://github.com/carlosantoniodasilva))
75
- * Document how to get country codes (alpha2) [ci skip] [\#781](https://github.com/countries/countries/pull/781) ([jean-francois-labbe](https://github.com/carlosantoniodasilva))
76
- * Update Croatia's currency to EUR [\#784](https://github.com/countries/countries/pull/784) ([pmor](https://github.com/pmor))
77
- * Duplicate `I18n.available_locales` into `default_locales` [\#785](https://github.com/countries/countries/pull/785) ([pmor](https://github.com/pmor))
78
-
79
-
80
- ## [5.2.0](https://github.com/countries/countries/releases/tag/v5.2.0') (2022/10/28 14:35 +00:00)
81
-
82
- **Important changes**
83
-
84
- * The Republic of Turkey has officially changed its name to `The Republic of Türkiye`, short name `Türkiye`. Official name attributes have been updated, as well as several translations. This could be a breaking change if you rely on the old name.
85
-
86
- * The `sixarm_ruby_unaccent` gem was replaced with `unaccent`. See [\#767](https://github.com/countries/countries/pull/767)
87
-
88
- **Merged pull requests:**
89
-
90
- * Ensure #translated_names is compacted [\#777](https://github.com/countries/countries/pull/777) ([pmor](https://github.com/pmor))
91
- * Rename turkey to Türkiye [\#771](https://github.com/countries/countries/pull/771) ([larskuhnt](https://github.com/larskuhnt))
92
- * Fix Upgrade.md route on README.markdown [\#766](https://github.com/countries/countries/pull/766) ([dmartingarcia](https://github.com/dmartingarcia))
93
- * Update french, missing uppercase letters [\#769](https://github.com/countries/countries/pull/769) ([JulienItard](https://github.com/JulienItard))
94
- * german translations for CI and CV [\#770](https://github.com/countries/countries/pull/770) ([larskuhnt](https://github.com/larskuhnt))
95
- * Fix Czechia name in LT translation [\#773](https://github.com/countries/countries/pull/773) ([tomukas](https://github.com/tomukas))
96
- * Updated Taiwan unofficial names [\#772](https://github.com/countries/countries/pull/772) ([Tzenda](https://github.com/Tzenda))
97
- * Replace sixarm_ruby_unaccent with unaccent [\#767](https://github.com/countries/countries/pull/767) ([jonian](https://github.com/jonian))
98
-
99
- ## [5.1.2](https://github.com/countries/countries/releases/tag/v5.1.2') (2022/08/11 14:35 +00:00)
100
-
101
- **Merged pull requests:**
102
-
103
- * Missing unofficial translations, addresses the remaining translations in [\#580](https://github.com/countries/countries/issues/580) - [\#764](https://github.com/countries/countries/pull/764) ([pmor](https://github.com/pmor))
104
-
105
-
106
- ## [5.1.1](https://github.com/countries/countries/releases/tag/v5.1.1') (2022/07/18 09:10 +00:00)
107
-
108
- **Important changes**
109
-
110
- - Subdivision loading now respects the configured locales and will only load subdivision translations for the configured locales instead of loading all translations. This fixes [\#580](https://github.com/countries/countries/issues/580)
111
-
112
- **Merged pull requests:**
113
-
114
- * Refactor subdivision loading to respect the configured locales. [\#762](https://github.com/countries/countries/pull/762) ([pmor](https://github.com/pmor))
115
- * Add an alternative name for USVI lookup [\#763](https://github.com/countries/countries/pull/763) ([tadejm](https://github.com/tadejm))
116
-
117
-
118
- ## [5.1.0](https://github.com/countries/countries/releases/tag/v5.1.0') (2022/06/27 07:50 +00:00)
119
-
120
- **Important changes**
121
-
122
- - `Subdivision` now has a `type` attribute obtained from ISO3166-2 subdivision types. `type` is a _lowercase_ and _snake_cased_ string.
123
- - Adds `Country#subdivision_types` and `#humanized_subdivision_types` to list a country's subdivision types
124
- - Adds `Country#subdivisions_of_types(types)` to allow getting subdivisions of given type(s)
125
- - `Country#states` is now deprecated to avoid confusion (this method was just an alias to `#subdivisions` and retuns all subdivisions, regarless of type)
126
-
127
- **Merged pull requests:**
128
-
129
- * Remove i18n_data dependency [\#756](https://github.com/countries/countries/pull/756) ([pmor](https://github.com/pmor))
130
- * Update subdivision YAML with codes [\#757](https://github.com/countries/countries/pull/757) ([pmor](https://github.com/pmor))
131
- * Add subdivision types from ISO3166-2 [\#758](https://github.com/countries/countries/pull/758) ([pmor](https://github.com/pmor))
132
-
133
- ## [5.0.2](https://github.com/countries/countries/releases/tag/v5.0.2') (2022/06/02 20:01 +00:00)
134
-
135
- **Merged pull requests:**
136
-
137
- * Fix common name for IR [\#754](https://github.com/countries/countries/pull/754) ([pmor](https://github.com/pmor))
138
- * Update MX subdivisions: Remove DIF and update some unofficial names [\#755](https://github.com/countries/countries/pull/755) ([pmor](https://github.com/pmor))
139
-
140
- ## [5.0.1](https://github.com/countries/countries/releases/tag/v5.0.1') (2022/05/02 12:03 +00:00)
141
-
142
- **Merged pull requests:**
143
-
144
- * Added subdivision_names_with_codes method in documentation [\#747](https://github.com/countries/countries/pull/747) ([arymoraes](https://github.com/arymoraes))
145
- * Corrected Portuguese subdivision names [\#748](https://github.com/countries/countries/pull/748) ([FilipaDurao](https://github.com/FilipaDurao))
146
-
147
- ## [5.0.0](https://github.com/countries/countries/releases/tag/v5.0.0') (2022/04/03 17:44 +00:00)
148
-
149
- **Breaking Changes**
150
-
151
- - Drop support for Ruby 2.5 and 2.6. (EOL in 2021-03-31 and 2022-03-31, respectively)
152
- - Remove deprecated attributes and add new `#find_by_any_name` finder, see https://github.com/countries/countries#upgrading-to-42-and-5x for details
153
-
154
- **Merged pull requests:**
155
-
156
- - Drop support for Ruby 2.5 and 2.6 [\#708](https://github.com/countries/countries/pull/708) ([pmor](https://github.com/pmor))
157
- - Remove deprecated attributes; Add new `#find_by_any_name` finder [\#745](https://github.com/countries/countries/pull/708) ([pmor](https://github.com/pmor))
158
-
159
- ## [4.2.3](https://github.com/countries/countries/releases/tag/v4.2.2) (2022/03/24 11:00 +00:00)
160
-
161
- **IMPORTANT NOTE: This will be be the last release of the 4.x series, and the last one to support Ruby 2.5 and 2.6**
162
-
163
- * Use bundle add instead [\#743](https://github.com/countries/countries/pull/743) ([glaucocustodio](https://github.com/glaucocustodio))
164
- * update i18n_data [\#742](https://github.com/countries/countries/pull/742) ([bonekost](https://github.com/bonekost))
165
-
166
- ## [4.2.2](https://github.com/countries/countries/releases/tag/v4.2.2) (2022/02/17 13:52 +00:00)
167
-
168
- **Merged pull requests:**
169
-
170
- * http:// -> https:// [\#737](https://github.com/countries/countries/pull/737) ([biow0lf](https://github.com/biow0lf))
171
- * Update AE start_of_week to monday. [\#739](https://github.com/countries/countries/pull/739) ([pmor](https://github.com/pmor))
172
- * Fix Subdivision data by [\#740](https://github.com/countries/countries/pull/740) ([pmor](https://github.com/pmor))
173
-
174
- **Closed issues:**
175
-
176
- * Change on UAE Value.start_of_week [\#738](https://github.com/countries/countries/issues/738)
177
-
178
-
179
- **Full Changelog**: https://github.com/countries/countries/compare/v4.2.1...v4.2.2
180
-
181
- ## [4.2.1](https://github.com/countries/countries/releases/tag/v4.2.1) (2022/01/11 12:39 +00:00)
182
-
183
- - Missing update to cache files on release 4.2.0
184
- - Update postal code regexes from rake task [\#734](https://github.com/countries/countries/pull/734 ) ([cover](https://github.com/cover))
185
-
186
- ## [4.2.0](https://github.com/countries/countries/releases/tag/v4.2.0) (2022/01/11 11:04 +00:00)
187
-
188
- **Deprecations**
189
-
190
- - `Country#name`, `Country#names` and the finders using these attributes. See README ('Upgrading to 4.2 and 5.x')
191
- - `latitude_dec` and `longitude_dec` attributes
192
-
193
- **Merged pull requests:**
194
-
195
- * Name methods refactor [\#717](https://github.com/countries/countries/pull/717) ([pmor](https://github.com/pmor))
196
- * Remove non-ISO US subdivisions [\#720](https://github.com/countries/countries/pull/720) ([pmor](https://github.com/pmor))
197
- * Update MK subdivisions [\#721](https://github.com/countries/countries/pull/721) ([pmor](https://github.com/pmor))
198
- * Update Kenya subdivision data [\#722](https://github.com/countries/countries/pull/722) ([pmor](https://github.com/pmor))
199
- * Fix French Southern Territories continent and region data [\#725](https://github.com/countries/countries/pull/725) ([pmor](https://github.com/pmor))
200
- * Fix SG subdivision data [\#726](https://github.com/countries/countries/pull/726) ([pmor](https://github.com/pmor))
201
- * Remove FO subdivisions [\#727](https://github.com/countries/countries/pull/727) ([pmor](https://github.com/pmor))
202
- * JE and IM currencies should be GBP [\#728](https://github.com/countries/countries/pull/728) ([pmor](https://github.com/pmor))
203
- * Fix US translations in nb and no locales [\#729](https://github.com/countries/countries/pull/729) ([pmor](https://github.com/pmor))
204
- * Missing alternative names for GB and US [\#724](https://github.com/countries/countries/pull/#724) ([dima4p](https://github.com/dima4p))
205
- * Deprecate latitude_dec and longitude_dec, delegate to latitude [\#723](https://github.com/countries/countries/pull/#723) ([pmor](https://github.com/pmor)
206
- * add VAT for Israel and Saudi Arabia [\#730](https://github.com/countries/countries/pull/#723) ([Venca24](https://github.com/Venca24)
207
- * Remove non-ISO KY subdivisions [\#731](https://github.com/countries/countries/pull/731) ([pmor](https://github.com/pmor))
208
- * Fix duplicated translations of CZ-10 subdivision [\#733](https://github.com/countries/countries/pull/733) ([pmor](https://github.com/pmor))
209
-
210
- **Closed issues:**
211
-
212
- * Update Kenya subdivisions/states [\#318](https://github.com/countries/countries/issues/318)
213
- * North Macedonia updates (2020-03-02) [\#674](https://github.com/countries/countries/issues/674)
214
- * Singapore wrong subdivision codes (SG-SG-0x) [\#663](https://github.com/countries/countries/issues/663)
215
- * Remove Faroe Islands subdivisions [\#606](https://github.com/countries/countries/issues/606)
216
- * Jersey uses GBP instead of JEP currency [\#492](https://github.com/countries/countries/issues/492)
217
- * USA in Norwegian translation should be 'USA' instead of 'De forente stater' [\#564](https://github.com/countries/countries/issues/564)
218
- * Geographic bounds for UK includes all of Europe [\#535](https://github.com/countries/countries/issues/535)
219
- * Wrong min_longitude for United States of America? [\#698](https://github.com/countries/countries/issues/698)
220
- * Translations for CZ-10 are defined twice [\#732](https://github.com/countries/countries/issues/732)
221
-
222
-
223
- ## [4.1.3](https://github.com/countries/countries/releases/tag/v4.1.2) (2022/01/03 12:16 +00:00)
224
-
225
- **Merged pull requests:**
226
-
227
- * Fix empty translations in LV subdivisions [\#719](https://github.com/countries/countries/pull/719) ([pmor](https://github.com/pmor))
228
-
229
- **Closed issues:**
230
-
231
- * Subdivision translations for some latvian subdivisions nil in countries 4.1.2 [\#718](https://github.com/countries/countries/issues/718)
232
-
233
- ## [4.1.2](https://github.com/countries/countries/releases/tag/v4.1.2) (2021/12/20 17:06 +00:00)
234
-
235
- **Merged pull requests:**
236
-
237
- * Update subdivisions, fix #600 conflicts [\#710](https://github.com/countries/countries/pull/710) ([donnen](https://github.com/donnen), [pmor](https://github.com/pmor))
238
- * Fix conflicts in #605 and update those countries to the latest subdivision data [\#711](https://github.com/countries/countries/pull/711) ([jjamesjohnson](https://github.com/jjamesjohnson), [pmor](https://github.com/pmor))
239
- * Update NZ subdivision data and fix Chatham Island entry [\#712](https://github.com/countries/countries/pull/712) ([pmor](https://github.com/pmor))
240
- * Update translation corrections for Occitan.[\#713](https://github.com/countries/countries/pull/713) ([pmor](https://github.com/pmor))
241
- * Update i18n_data to 0.15.0 [\#715](https://github.com/countries/countries/pull/715) ([pmor](https://github.com/pmor))
242
-
243
- ## [4.1.1](https://github.com/countries/countries/releases/tag/v4.1.1) (2021/12/06 13:31 +00:00)
244
-
245
- **Merged pull requests:**
246
-
247
- * Fix ISO3166::Country respond_to_missing? [\#625](https://github.com/countries/countries/pull/625) ([biinari](https://github.com/biinari))
248
- * Revert subdivision changes to NO.yaml [\#709](https://github.com/countries/countries/pull/709) ([pmor](https://github.com/pmor))
249
-
250
- ## [4.1.0](https://github.com/countries/countries/releases/tag/v4.1.0) (2021/11/30 09:44 +00:00)
251
-
252
- **New features:**
253
-
254
- - `Country.pluck` [\#706](https://github.com/countries/countries/pull/706) ([dorianmariefr](https://github.com/dorianmariefr))
255
-
256
- **Closed issues:**
257
-
258
- - Ensure Moscow Oblast translations reference the "province" [\#694](https://github.com/countries/countries/pull/694) ([carlesjove](https://github.com/carlesjove))
259
- - Update NL reduced VAT rate [\#693](https://github.com/countries/countries/pull/693) ([oscaredel](https://github.com/oscaredel))
260
- - Serbian translation for North Macedonia is incorrect [\#703](https://github.com/countries/countries/issues/703)
261
-
262
- **Merged pull requests:**
263
-
264
- - Set the code when creating subdivisions [\#658](https://github.com/countries/countries/pull/658) ([IamDavidovich](https://github.com/IamDavidovich))
265
- - Refresh subdivision data from CLDR [\#704](https://github.com/countries/countries/pull/704) ([pmor](https://github.com/pmor))
266
- - Update I18nData gem to 0.13.1 and fix MK translation in `mk` locale [\#705](https://github.com/countries/countries/pull/705) ([pmor](https://github.com/pmor))
267
-
268
- ## [4.0.1](https://github.com/countries/countries/releases/tag/v4.0.1) (2021/07/19 14:47 +01:00)
269
-
270
- **Closed issues:**
271
-
272
- - ISO Country Code for Czechia/Czech Republic should be updated. [\#688](https://github.com/countries/countries/issues/688)
273
- - Regression in 4.0.0: ISO3166::Country.translations(:en) with symbol arg raises [\#691](https://github.com/countries/countries/issues/691)
274
-
275
- **Merged pull requests:**
276
-
277
- - Updating Norway subdivision codes to match late 2020 ISO change [\#666](https://github.com/countries/countries/pull/666) and [\#689](https://github.com/countries/countries/pull/689) ([thomascrumrine](https://github.com/thomascrumrine))
278
- - Update CZ.yaml: Czechia is the ISO short name for the Czech Republic [\#690](https://github.com/countries/countries/pull/690) ([pmor](https://github.com/pmor))
279
- - Fix regression in `ISO3166::Country.translations` with symbols [\#692](https://github.com/countries/countries/pull/692) ([pmor](https://github.com/pmor))
280
-
281
-
282
- ## [4.0.0](https://github.com/countries/countries/releases/tag/v4.0.0) (2021/06/11 09:47 +01:00)
283
-
284
- [Full changelog](https://github.com/countries/countries/compare/v3.1.0...v4.0.0)
285
-
286
- **Breaking changes:**
287
-
288
- - None
289
-
290
- **Closed issues:**
291
-
292
- - update_cldr_subdivison_data Rake task broken due to CLDR repo change [\#633](https://github.com/countries/countries/issues/633)
293
- - Fix ISO3166::Data.register loading of nested hashes (from https://github.com/countries/countries/pull/397#issuecomment-846543094)
294
- - Angola's bounds is the same as Austria? [\#682](https://github.com/countries/countries/issues/682)
295
-
296
- **Merged pull requests:**
297
-
298
- - `make_cache_thread_safe` ([factorialco](https://github.com/factorialco))
299
- - Update i18n_data to 0.13.0 and drop support for rubies <2.5 [\#650](https://github.com/countries/countries/pull/650) ([pmor](https://github.com/pmor))
300
- - Fixes [\#633] and updates geocoder searches [\#634](https://github.com/countries/countries/pull/634) ([mezza](https://github.com/mezza))
301
- - `translation_corrections.yaml`: Fix broken link [\#664](https://github.com/countries/countries/pull/664) ([henrik](https://github.com/henrik))
302
- - Correct Danish translation of CZ [\#661](https://github.com/countries/countries/pull/661) ([JanMSP](https://github.com/JanMSP))
303
- - Swedish translation correction: RU = "Ryssland" [\#665](https://github.com/countries/countries/pull/665) ([henrik](https://github.com/henrik))
304
- - Update gemspec metadata with new repo url [\#672](https://github.com/countries/countries/pull/672) ([pmor](https://github.com/pmor))
305
- - Fix typo and lint in README.markdown [\#675](https://github.com/countries/countries/pull/675) ([DigiPie](https://github.com/DigiPie))
306
- - Update CI to the latests ruby point versions [\#677](https://github.com/countries/countries/pull/677) ([pmor](https://github.com/pmor))
307
- - Adds North Korea to list of unofficial names of KP [\#681](https://github.com/countries/countries/pull/681) ([talha-akram ](https://github.com/talha-akram ))
308
- - Update Vietnam subdivisions with current ISO_3166-2:VN [\#673](https://github.com/countries/countries/pull/673) ([keymastervn](https://github.com/keymastervn))
309
- - Add custom countries to translation lists [\#595](https://github.com/countries/countries/pull/595) ([phylor](https://github.com/phylor))
310
- - Fix ISO3166::Data.register loading of nested hashes, eg: geo data. [\#683](https://github.com/countries/countries/pull/683) ([pmor](https://github.com/pmor))
311
- - Remove Travis CI configuration. [\#685](https://github.com/countries/countries/pull/683) ([pmor](https://github.com/pmor))
312
-
313
- ## [3.1.0](https://github.com/countries/countries/releases/tag/v3.1.0) (2021/03/24 00:01 +05:00)
314
-
315
- [Full Changelog](https://github.com/countries/countries/compare/v3.0.1...v3.1.0)
316
-
317
- **Closed issues:**
318
-
319
- - Add timezones to country data [\#669](https://github.com/countries/countries/issues/669)
320
- - The name for Vietnam is incorrect [\#660](https://github.com/countries/countries/issues/660)
321
- - Missing address\_format for Vietnam [\#652](https://github.com/countries/countries/issues/652)
322
- - Temporary German VAT rate \(16%\) from July 1st to December 31st, 2020 [\#637](https://github.com/countries/countries/issues/637)
323
- - Armenian translations are incorrect [\#622](https://github.com/countries/countries/issues/622)
324
- - Please cut a release [\#610](https://github.com/countries/countries/issues/610)
325
- - Please update i18n\_data to 0.10.0 [\#607](https://github.com/countries/countries/issues/607)
326
- - Release '3.0.0' missing some commits [\#603](https://github.com/countries/countries/issues/603)
327
- - Please release a new version [\#591](https://github.com/countries/countries/issues/591)
328
- - 'Portugal' is misspelled in lib/countries/cache/locales/nn.json [\#583](https://github.com/countries/countries/issues/583)
329
- - Any interest in fiscal year data? [\#532](https://github.com/countries/countries/issues/532)
330
- - Kosovo independent from Serbia [\#511](https://github.com/countries/countries/issues/511)
331
- - Include country's postcode/zip format [\#366](https://github.com/countries/countries/issues/366)
332
-
333
- **Merged pull requests:**
334
-
335
- - add find\_all\_by example to readme [\#667](https://github.com/countries/countries/pull/667) ([glaucocustodio](https://github.com/glaucocustodio))
336
- - Add address\_format for Vietnam, fixes [\#652] [\#653](https://github.com/countries/countries/pull/653) ([pmor](https://github.com/pmor))
337
- - "The United Kingdom" is an unofficial name for Great Britain [\#651](https://github.com/countries/countries/pull/651) ([RogerPodacter](https://github.com/RogerPodacter))
338
- - UK is an unofficial name for Great Britain [\#648](https://github.com/countries/countries/pull/648) ([RogerPodacter](https://github.com/RogerPodacter))
339
- - \[French\] Bad encoding for new zealand [\#643](https://github.com/countries/countries/pull/643) ([waghanza](https://github.com/waghanza))
340
- - Update gemspec: i18n\_data 0.11.0 [\#640](https://github.com/countries/countries/pull/640) ([masawo](https://github.com/masawo))
341
- - Add missing Latvia address\_format template [\#639](https://github.com/countries/countries/pull/639) ([RogerPodacter](https://github.com/RogerPodacter))
342
- - Used the common name República Checa in PT [\#635](https://github.com/countries/countries/pull/635) ([basex](https://github.com/basex))
343
- - Fix China subdvivisions iso code see https://en.wikipedia.org/wiki/IS… [\#632](https://github.com/countries/countries/pull/632) ([daniel88m](https://github.com/daniel88m))
344
- - Use AUD currency for Tuvalu [\#629](https://github.com/countries/countries/pull/629) ([mayrsascha](https://github.com/mayrsascha))
345
- - Add country code 672 to HM [\#626](https://github.com/countries/countries/pull/626) ([wongyouth](https://github.com/wongyouth))
346
- - \[GB\] Add unofficial names for ERY [\#620](https://github.com/countries/countries/pull/620) ([carlesjove](https://github.com/carlesjove))
347
- - \[ES\] Add unofficial names + translations + remove weird characters [\#619](https://github.com/countries/countries/pull/619) ([carlesjove](https://github.com/carlesjove))
348
- - Add data & script to update postal code & format [\#618](https://github.com/countries/countries/pull/618) ([cover](https://github.com/cover))
349
- - Fixes failing rspec assertions after cache update [\#617](https://github.com/countries/countries/pull/617) ([rposborne](https://github.com/rposborne))
350
- - Potential solution for thread safety [\#608](https://github.com/countries/countries/pull/608) ([hammerdr](https://github.com/hammerdr))
351
- - Fix a typo in 'Portugal' [\#602](https://github.com/countries/countries/pull/602) ([mbirman](https://github.com/mbirman))
352
- - added CL standard VAT [\#578](https://github.com/countries/countries/pull/578) ([tiagomatos](https://github.com/tiagomatos))
353
- - Remove Puerto Rico subdivisions [\#539](https://github.com/countries/countries/pull/539) ([philipefarias](https://github.com/philipefarias))
354
-
355
- ## [v3.0.1](https://github.com/countries/countries/releases/tag/v3.0.1) (2020/02/11 00:04 +05:00)
356
-
357
- [Full Changelog](https://github.com/hexorx/countries/compare/v3.0.0...v3.0.1)
358
-
359
- **Closed issues:**
360
-
361
- - Accessing all ISO 639-1 language codes [\#604](https://github.com/hexorx/countries/issues/604)
362
- - County ISO and translations for Cork County \(Ireland\) in invalid [\#594](https://github.com/hexorx/countries/issues/594)
363
- - Chile added Ñuble Region [\#592](https://github.com/hexorx/countries/issues/592)
364
- - Samoa currency code should be WST [\#584](https://github.com/hexorx/countries/issues/584)
365
- - Mauritanian currency code is changed [\#568](https://github.com/hexorx/countries/issues/568)
366
- - Czech Republic changed it's name to Czechia [\#560](https://github.com/hexorx/countries/issues/560)
367
- - Swaziland renamed to eSwatini [\#521](https://github.com/hexorx/countries/issues/521)
368
-
369
- **Merged pull requests:**
370
-
371
- - Update UK EU and EEA status [\#615](https://github.com/hexorx/countries/pull/615) ([carlesjove](https://github.com/carlesjove))
372
- - Add "The Netherlands" as an unofficial name of NL [\#614](https://github.com/hexorx/countries/pull/614) ([RogerPodacter](https://github.com/RogerPodacter))
373
- - CI: Drop unused sudo: false directive [\#613](https://github.com/hexorx/countries/pull/613) ([olleolleolle](https://github.com/olleolleolle))
374
- - Samoa currency is WST [\#599](https://github.com/hexorx/countries/pull/599) ([mbirman](https://github.com/mbirman))
375
- - Add Ñuble region [\#598](https://github.com/hexorx/countries/pull/598) ([mbirman](https://github.com/mbirman))
376
- - Update Ireland Subdivision Formatting and Connacht and \(County\) Cork Data [\#596](https://github.com/hexorx/countries/pull/596) ([anastasiastowers](https://github.com/anastasiastowers))
377
- - Change the name of Macedonia to North Macedonia [\#585](https://github.com/hexorx/countries/pull/585) ([svetliomihailov](https://github.com/svetliomihailov))
378
- - Add Murica to United States unoffical names [\#577](https://github.com/hexorx/countries/pull/577) ([mikeyduece](https://github.com/mikeyduece))
379
- - Fix state codes from being returned as false [\#574](https://github.com/hexorx/countries/pull/574) ([akiellor](https://github.com/akiellor))
380
- - Update i18n\_data version [\#572](https://github.com/hexorx/countries/pull/572) ([tatarsky-v](https://github.com/tatarsky-v))
381
- - remove bin/console from gemspec [\#571](https://github.com/hexorx/countries/pull/571) ([patleb](https://github.com/patleb))
382
- - Add North Macedonia as alternate name [\#570](https://github.com/hexorx/countries/pull/570) ([toddwschneider](https://github.com/toddwschneider))
383
- - Update Mauritanian currency code [\#569](https://github.com/hexorx/countries/pull/569) ([vencislavdimitrov](https://github.com/vencislavdimitrov))
384
- - Update name of SZ to eSwatini \(was Swaziland\) [\#567](https://github.com/hexorx/countries/pull/567) ([rossgayler](https://github.com/rossgayler))
385
- - Fixed links to debian package iso-codes [\#566](https://github.com/hexorx/countries/pull/566) ([panterch](https://github.com/panterch))
386
- - It should include language variants which are available in i18n\_data. [\#565](https://github.com/hexorx/countries/pull/565) ([torumori](https://github.com/torumori))
387
- - Fix "it's"-related typos [\#563](https://github.com/hexorx/countries/pull/563) ([RogerPodacter](https://github.com/RogerPodacter))
388
- - Add Czechia as unofficial name for Czech Republic [\#561](https://github.com/hexorx/countries/pull/561) ([msdundar](https://github.com/msdundar))
389
- - Drops the i18n requirement from the gem [\#558](https://github.com/hexorx/countries/pull/558) ([rposborne](https://github.com/rposborne))
390
- - Add caching to the parsing of values during search [\#557](https://github.com/hexorx/countries/pull/557) ([radixhound](https://github.com/radixhound))
391
- - 🇬🇧🇪🇺 Britain leaves the EU and EEA [\#500](https://github.com/hexorx/countries/pull/500) ([seanhandley](https://github.com/seanhandley))
392
-
393
- ### v2.2.0 (yanked and re-released as 3.0.0) (2018/12/17 10:20 +00:00)
394
- **Closed issues:**
395
-
396
- - Overriding/Extending Country class with custom methods [\#506](https://github.com/hexorx/countries/issues/506)
397
- - fonts [\#503](https://github.com/hexorx/countries/issues/503)
398
- - USA counties [\#501](https://github.com/hexorx/countries/issues/501)
399
- - flags not working [\#489](https://github.com/hexorx/countries/issues/489)
400
- - Proper way to only change a few subset of data [\#486](https://github.com/hexorx/countries/issues/486)
401
-
402
- **Merged pull requests:**
403
-
404
- - Relax i18n gemspec [\#553](https://github.com/hexorx/countries/issues/553)
405
- - Update cache [\#549](https://github.com/hexorx/countries/pull/549) ([jgrau](https://github.com/jgrau))
406
- - Update cache [\#549](https://github.com/hexorx/countries/pull/549) ([jgrau](https://github.com/jgrau))
407
- - Add dash to Nouvelle-Calédonie [\#547](https://github.com/hexorx/countries/pull/547) ([HLFH](https://github.com/HLFH))
408
- - New currency\_code for Venezuela: VEF -\> VES [\#546](https://github.com/hexorx/countries/pull/546) ([madacol](https://github.com/madacol))
409
- - More vat rates [\#544](https://github.com/hexorx/countries/pull/544) ([jgrau](https://github.com/jgrau))
410
- - Consistently use single-quotes in code block [\#541](https://github.com/hexorx/countries/pull/541) ([orhantoy](https://github.com/orhantoy))
411
- - Add Thailand vat rates [\#536](https://github.com/hexorx/countries/pull/536) ([jgrau](https://github.com/jgrau))
412
- - Update and fix LatAm countries subdivisions [\#534](https://github.com/hexorx/countries/pull/534) ([philipefarias](https://github.com/philipefarias))
413
- - Add feature toggle for countries to avoid money dependency [\#533](https://github.com/hexorx/countries/pull/533) ([stefkin](https://github.com/stefkin))
414
- - Fixing language code for Urdu to ISO 639-2 [\#531](https://github.com/hexorx/countries/pull/531) ([dachusa](https://github.com/dachusa))
415
- - Correcting syntax for YAML numeric list key 08 [\#530](https://github.com/hexorx/countries/pull/530) ([dachusa](https://github.com/dachusa))
416
- - Rubocop style guides [\#527](https://github.com/hexorx/countries/pull/527) ([mrclmrvn](https://github.com/mrclmrvn))
417
- - Added 20 subdivisions yaml files [\#526](https://github.com/hexorx/countries/pull/526) ([dachusa](https://github.com/dachusa))
418
- - Created Anguilla Subdivision YAML file [\#525](https://github.com/hexorx/countries/pull/525) ([dachusa](https://github.com/dachusa))
419
- - Correcting Ash Shamālīyah's translations location [\#524](https://github.com/hexorx/countries/pull/524) ([dachusa](https://github.com/dachusa))
420
- - Singapore IOC code has changed [\#523](https://github.com/hexorx/countries/pull/523) ([pzupan](https://github.com/pzupan))
421
- - \#519 correct NO subdivision key for Sudan's Ash Shamālīyah [\#520](https://github.com/hexorx/countries/pull/520) ([jlw](https://github.com/jlw))
422
- - Fixed incorrect flag emoji in Readme example [\#518](https://github.com/hexorx/countries/pull/518) ([keithpitt](https://github.com/keithpitt))
423
- - Corrected VAT rates of Greece [\#516](https://github.com/hexorx/countries/pull/516) ([gauda](https://github.com/gauda))
424
- - correct currency for Haiti [\#515](https://github.com/hexorx/countries/pull/515) ([genevievebelle](https://github.com/genevievebelle))
425
- - Update LT.yaml [\#514](https://github.com/hexorx/countries/pull/514) ([s4uliu5](https://github.com/s4uliu5))
426
- - \[CI\] Test against Ruby 2.1 and 2.5 [\#513](https://github.com/hexorx/countries/pull/513) ([nicolasleger](https://github.com/nicolasleger))
427
- - Add zh translation for CN subdivisions [\#512](https://github.com/hexorx/countries/pull/512) ([wingice](https://github.com/wingice))
428
- - Memoize subdivision YAML loading [\#510](https://github.com/hexorx/countries/pull/510) ([mdehoog](https://github.com/mdehoog))
429
- - Update CZ country name [\#509](https://github.com/hexorx/countries/pull/509) ([minvs1](https://github.com/minvs1))
430
- - Add Ukraine vat rates [\#507](https://github.com/hexorx/countries/pull/507) ([jgrau](https://github.com/jgrau))
431
- - Corrected swedish transation for GB [\#505](https://github.com/hexorx/countries/pull/505) ([pidu](https://github.com/pidu))
432
- - Remove empty :geo key and misspelled latitude [\#504](https://github.com/hexorx/countries/pull/504) ([normancapule](https://github.com/normancapule))
433
- - Update README.markdown [\#502](https://github.com/hexorx/countries/pull/502) ([gssbzn](https://github.com/gssbzn))
434
-
435
-
436
- ### v2.1.4 (2018/02/09 01:52 +00:00)
437
- - [#498](https://github.com/hexorx/countries/pull/498) Updated Switzerland VAT rates (@Aethelflaed)
438
- - [#497](https://github.com/hexorx/countries/pull/497) Swedish translation correction of GB (@eric-khoury)
439
- - [#493](https://github.com/hexorx/countries/pull/493) Add vat rates for Philippines (@jgrau)
440
-
441
- ## 2.1.3
442
- - [#480](https://github.com/hexorx/countries/pull/480) Add subdivision names with codes (@md-hamed)
443
- - [#490](https://github.com/hexorx/countries/pull/490) Fix search to work for countries with comma in their name (@bud-yoyo)
444
- - [#488](https://github.com/hexorx/countries/pull/488) Update BY currency code (BYR -> BYN) (@mainameiz)
445
- - [#487](https://github.com/hexorx/countries/pull/487) fix TW national_prefix (@swdyh)
446
- - [#478](https://github.com/hexorx/countries/pull/478) Add vat rates for mexico (@jgrau)
447
- - [#476](https://github.com/hexorx/countries/pull/476) Add standard vat rate for Norway (@jgrau)
448
- - [#473](https://github.com/hexorx/countries/pull/473) Add CLDR data source for subdivion translations. (@rposborne)
449
- - [#472](https://github.com/hexorx/countries/pull/472) Fix corrupted Subdivisions (@rposborne)
450
-
451
- ## 2.1.2
452
- - Fix incorrectly named subdivision data files @skyborn8
453
- - Updates MX.yaml to reflect Mexico City's official name change @novohispano
454
-
455
- ## 2.1.1
456
- - Updated cache @rposborne
457
- - Add code attribute to Subdivision @kasparsj
458
- - Allow override of cache dir @kasparsj
459
-
460
- ## 2.1.0
461
- - Fix emoji support in old rubies < 2.0 @pezholio
462
- - Detect if active_support is loaded before using .html_safe @subfusc
463
- - Changed the nationality of Hong Kong from Chinese to Hong Kongnese @neosepulveda
464
- - Readme Cleanup @dankimio
465
- - Correct typo for Virgin Islands, U.S and add translation for Palestine @jpawlyn
466
- - Add new French Regions (january 2016) @clemthenem
467
- - Add Russian unofficial name to GB @faucct
468
- - Update gem i18n_data @seb-sykio
469
-
470
- ## 2.0.8
471
- - Add language data to Nepal @gkunwar
472
- - Add start of week day @Vsanchezr
473
- - Normalized Turkey's Subdivisions @emir
474
-
475
- ## 2.0.7
476
- - Content Fixes
477
-
478
- ## 2.0.6
479
- - Adds French Guiana nationality
480
- - Add missing un_locode for south sudan
481
- - Fix Norwegian country code (false -> NO)
482
- - Add missing un location codes
483
- - Further reduce calls to .keys to provide additional speedup and performance bump
484
- - Add sixarm_ruby_unaccent to gemspec dependencies
485
- - Update all official country names to the ISO 3166 standard
486
- - [Full Changelog](https://github.com/hexorx/countries/compare/v2.0.5...v2.0.6)
487
-
488
- ## 2.0.5
489
- - Fixes #408 Correct Subdivision files for AD, AE, AF, AG, and AL
490
- - [Full Changelog](https://github.com/hexorx/countries/compare/v2.0.4...v2.0.5)
491
-
492
- ## 2.0.4
493
- - Update cache.
494
- - [Full Changelog](https://github.com/hexorx/countries/compare/v2.0.3...v2.0.4)
495
-
496
- ## 2.0.3
497
- - Fix comparison with country to nil
498
- - Add NANP_prefix as separate field
499
- - [Full Changelog](https://github.com/hexorx/countries/compare/v2.0.2...v2.0.3)
500
-
501
- ## 2.0.2
502
- - Add nanp_prefix data.
503
- - [Full Changelog](https://github.com/hexorx/countries/compare/v2.0.1...v2.0.2)
504
-
505
- ## 2.0.1
506
- - Content updates
507
- - Fix bounding boxes that were mismatched.
508
- - Update bounding box update task to prevent any lookup from return anything other than a country.
509
- - [Full Changelog](https://github.com/hexorx/countries/compare/v2.0.0...v2.0.1)
510
-
511
- ## 2.0.0
512
- - Remove find_country_by_translations
513
- - [Full Changelog](https://github.com/hexorx/countries/compare/v1.2.5...v2.0.0)
514
- - [Changelog from RC](https://github.com/hexorx/countries/compare/v2.0.0.rc3...v2.0.0)
515
-
516
- ## 2.0.0.rc3
517
- - Content updates
518
- - All geo cords, are no longer strings
519
- - All bounding boxes updated
520
- - United States is now United States of America
521
- - Refactor of Rake tasks
522
- - [Changelog from RC](https://github.com/hexorx/countries/compare/v2.0.0.rc2...v2.0.0.rc3)
523
-
524
- ## 2.0.0.rc2
525
- - Add fallback when looking up locales for pt-BR style languages
526
- - Implement project style guide
527
- - [Changelog from RC](https://github.com/hexorx/countries/compare/v2.0.0.rc...v2.0.0.rc2)
528
-
529
- ## 2.0.0.rc
530
- - Fixed a regression that would purge the countries memory cache when adding a custom country #353
531
- - Various Content Updates
532
- - [Changelog from RC](https://github.com/hexorx/countries/compare/v2.0.0.pre.4...v2.0.0.rc)
533
-
534
- ## 2.0.0.pre.4
535
- - [Changelog from RC](https://github.com/hexorx/countries/compare/v2.0.0.pre.2...v2.0.0.pre.4)
536
- - Fix crash when app introduces an unexpected locale. Much thanks to @jstenhouse
537
-
538
- ## 2.0.0.pre.2
539
- - [Changelog from RC](https://github.com/hexorx/countries/compare/v2.0.0.pre...v2.0.0.pre.2)
540
- - Bringing in content from 1.x branch
541
-
542
- ## 2.0.0.pre
543
- - [Changelog from RC](https://github.com/hexorx/countries/compare/v1.2.5...v2.0.0.pre)
544
- - Selective loading translations of countries
545
- - Auto detect I18n locales to load
546
- - Add Configuration methods to force locales to load
547
- - Dropped currencies gem in favor of money
548
- - Add Time Zone Support
549
- - DATA STRUCTURE CHANGES
550
- -COUNTRY
551
- - BREAKING CHANGES
552
- - names: => unofficial_names
553
- - languages: => official_languages
554
- - lat/lng fields are nested under a "geo" key
555
- - + spoken_languages
556
- - +
557
-
558
-
559
- ## 1.2.5 @ 2016-01-22
560
- - Rebuilding cache
561
- - [Full Changelog](https://github.com/hexorx/countries/compare/v1.2.4...v1.2.5)
562
-
563
- ## 1.2.4 @ 2016-01-21
564
- - Romanian Standard VAT rate is 20% as of 2016-01-01 #325 @dougal
565
- - Palestine submit #324 @samizan
566
- - Added 47 as calling code for Bouvet Island, Norwegian territory #323
567
- - Added XAF as currency code for Congo @espen
568
- - Force converting passed locale to string @borodiychuk
569
- - [Full Changelog](https://github.com/hexorx/countries/compare/v1.2.3...v1.2.4)
570
-
571
- ## 1.2.3
572
- - Content Updates
573
- - [Full Changelog](https://github.com/hexorx/countries/compare/v1.2.2...v1.2.3)
574
-
575
- ## 1.2.2
576
- - Content Updates
577
- - [Full Changelog](https://github.com/hexorx/countries/compare/v1.2.1...v1.2.2)
578
-
579
- ## 1.2.1
580
- - Fixed issue in loading @rposborne
581
- - [Full Changelog](https://github.com/hexorx/countries/compare/v1.2.0...v1.2.1)
582
-
583
- ## 1.2.0 (yanked)
584
- - Cleaning up Global Load Path @rposborne
585
- - Add MOP as the currency for Macao @kriskhaira
586
- - [Full Changelog](https://github.com/hexorx/countries/compare/v1.1.0...v1.2.0)
587
-
588
- ## 1.1.0
589
- - Adding compare operation to country @guilleart
590
- - Content Updates @rposbone
591
- - Correct NL to NO for un_locode @ohenrik
592
- - Fix spelling of Sjælland @boatrite
593
- - Add alternate spelling of Macao/Macau @nityaoberoi
594
- - [Full Changelog](https://github.com/hexorx/countries/compare/v1.0.0...v1.1.0)
595
-
596
- ## 1.0.0
597
- - Switch to Marshalling for cache storage @rposborne
598
- - Country class helper now must be explicitly loaded @rposborne
599
- - Removed Rails 2.0 FormHelper COUNTRIES @rposborne
600
- - Add class codes method to get list of all alpha2 codes @rposborne
601
- - Change default behavior of all method to return a list of country objects vs a tuple of alpha code + name
602
- - [Full Changelog](https://github.com/hexorx/countries/compare/v0.11.5...v1.0.0)
603
-
604
- ## 0.11.5
605
- - Refactored data loading into it's own class
606
- - Added ability to override bad translations from i18n
607
- - Update languages in NO.yml @matfiz
608
- - Fix Subdivisions & States in README @pnomolos
609
- - Fix New York, Washington, Oklahoma state's latitude/longitude information @GUI
610
- - Bad state data present in Uruguay has been removed @saisha92
611
- - Various Other Content Updates by @danshultz @embs @sykaeh, @tg0
612
- - [Full Changelog](https://github.com/hexorx/countries/compare/v0.11.4...v0.11.5)
613
-
614
- ## 0.11.4
615
- - Added coordinates for subdivisions @fabn
616
- - Various Other Content Updates by @fabn, @snowblink
617
- - [Full Changelog](https://github.com/hexorx/countries/compare/v0.11.3...v0.11.4)
618
-
619
- ## 0.11.3
620
- - Translations update from i18n-data
621
- - [Full Changelog](https://github.com/hexorx/countries/compare/v0.11.2...v0.11.3)
622
-
623
- ## 0.11.2
624
- - silence ruby warnings @franckverrot
625
- - add find_country_by_translated_name @rposborne NOTE: this is garbage for the
626
- time being, some translations have duplicates in them and causes false results
627
- - [Full Changelog](https://github.com/hexorx/countries/compare/v0.11.1...v0.11.2)
628
-
629
- ## 0.11.1
630
- - added bounding box coordinates for VI, CW, PR, AS, and GU : @marinom
631
- - revert Lookup country by translated name via find_by_name @rposborne
632
- - [Full Changelog](https://github.com/hexorx/countries/compare/v0.11.0...v0.11.1)
633
-
634
- ## [0.11.0] - 2015-03-03
635
- ### Changed
636
- - Cached Translations in gem to translation lookup speed @rposborne, @stayhero
637
- - Upgrade test suite to rspec 3 @rposborne
638
- - Added region_short for postal codes @stayhero
639
- - Content Updates @masolino, @rosetree, @stayhero, @skarlcf, @cllns, @speric, @rposborne
640
- - Adding Lat/Lng to countries @jabawack81
641
- - Readme Updates @cllns
642
- - [Full Changelog](https://github.com/hexorx/countries/compare/v0.10.0...v0.11.0)
643
-
644
- ### v0.10.0 (2015/01/23 05:58 +00:00)
645
- - [#151](https://github.com/hexorx/countries/pull/151) Added VAT rates to EU countries (@cedricdubois)
646
- - [#212](https://github.com/hexorx/countries/pull/212) Rename CU-02 to 'Provincia de la Habana' and CU-03 to 'La Habana' (@cllns)
647
- - [#150](https://github.com/hexorx/countries/pull/150) Arabic Translations and names (@m7moud)
648
- - [#187](https://github.com/hexorx/countries/pull/187) Added World Regions (APAC, EMEA, AMER) to countries. (@jeppester, @simonask)
649
- - [#163](https://github.com/hexorx/countries/pull/163) Gems should not have their Gemfile.locks committed (@snowblink)
650
- - [#111](https://github.com/hexorx/countries/pull/111) Corrected NZ national_prefix (@dnch)
651
- - [#145](https://github.com/hexorx/countries/pull/145) adding 11 to national_number_lengths on Brazil because Sao Paulo city us... (@ustrajunior)
652
- - [#153](https://github.com/hexorx/countries/pull/153) Corrected English spelling of Barbados (@just3ws)
653
- - [#162](https://github.com/hexorx/countries/pull/162) adding latitude and longitude for Curaçao and Guadeloupe (@joshtaylor)
654
- - [#169](https://github.com/hexorx/countries/pull/169) Define primary language of Malaysia as Malay (@maxwell, @kriskhaira)
655
- - [#173](https://github.com/hexorx/countries/pull/173) Updated Russian Federation english translation: Russia to Russian Federation (@mikestone14)
656
- - [#174](https://github.com/hexorx/countries/pull/174) Correct translation of Afghanistan for fr and es (@schatteleyn)
657
- - [#180](https://github.com/hexorx/countries/pull/180) Add more names for some countries (@Baltazore)
658
- - [#181](https://github.com/hexorx/countries/pull/181) Add 'Newfoundland', 'Yukon' to list of valid names and add missing French names. (@dwhelan)
659
- - [#175](https://github.com/hexorx/countries/pull/175) Saint Barthélemy uses the Euro (@sugru)
660
- - [#199](https://github.com/hexorx/countries/pull/199) Add Russian as Estonian language (@martinholmin)
661
- - [#207](https://github.com/hexorx/countries/pull/207) Add Cuban Subdivisions - Artemisa and Mayabeque (@cllns)
662
- - [#205](https://github.com/hexorx/countries/pull/205) Adding Address format for New Caledonia, Thailand and Liechtenstein (@rposborne)
663
- - [#177](https://github.com/hexorx/countries/pull/177) Fix Country#equality method (@estum)
664
- - [#157](https://github.com/hexorx/countries/pull/157) Update ES.yaml (@mediatainment)
665
- - [#184](https://github.com/hexorx/countries/pull/184) Belarusian translations (@micrum)
666
- - [#194](https://github.com/hexorx/countries/pull/194) Update Singapore subdivisions to reflect ISO-3166-2:SG (@speric)
667
- - [#201](https://github.com/hexorx/countries/pull/201) Lithuania adopted the Euro on 2015-01-01 (@philippbosch)
668
-
669
- ### upstream-12-24-14+speric (2014/12/24 18:26 +00:00)
670
- - [#156](https://github.com/hexorx/countries/pull/156) Add postal code knowledge (@maxwell)
671
- - [#161](https://github.com/hexorx/countries/pull/161) fixed tests for 136 (@hexorx)
672
- - [#142](https://github.com/hexorx/countries/pull/142) Latvia's currency is now the Euro (@sugru)
673
- - [#141](https://github.com/hexorx/countries/pull/141) Add additional names for Russia & Ukraine (@uzbekjon)
674
- - [#140](https://github.com/hexorx/countries/pull/140) adding NO- to the list of Norway counties. Based on the ISO 3166 description for Norway. (@miguelperez)
675
- - [#137](https://github.com/hexorx/countries/pull/137) Update Japanese translation (@rono23)
676
- - [#136](https://github.com/hexorx/countries/pull/136) Adding arabic translation for many countries (@OmarQunsul)
677
- - [#130](https://github.com/hexorx/countries/pull/130) Added the method #all_translated(locale) that returns a list of translated country names. (@LostTie)
678
- - [#127](https://github.com/hexorx/countries/pull/127) Add currency to Macedonia (MK) (@sluceno)
679
- - [#125](https://github.com/hexorx/countries/pull/125) Update AT.yaml (@mediatainment)
680
- - [#124](https://github.com/hexorx/countries/pull/124) Updated country name for Palestine (@stangel)
681
- - [#119](https://github.com/hexorx/countries/pull/119) Myanmar currency is MMK (@zeto)
682
- - [#123](https://github.com/hexorx/countries/pull/123) Update county names in Croatia (@toncid)
683
- - [#129](https://github.com/hexorx/countries/pull/129) add missing german translations (@benben)
684
- - [#128](https://github.com/hexorx/countries/pull/128) Fix Russian Federation instead Russia and fix and add RU.yml subdivisions translation (@mibamur)
685
- - [#118](https://github.com/hexorx/countries/pull/118) Updated destination code and number lengths for Germany (@daniel-rikowski)
686
- - [#121](https://github.com/hexorx/countries/pull/121) russian translation (@razum2um)
687
- - [#117](https://github.com/hexorx/countries/pull/117) Changed Guernseys currency code to be in line with ISO4217. (@richardmcmillen-examtime)
688
- - [#102](https://github.com/hexorx/countries/pull/102) Add "Francia" to names section of France. (@nosolosoftware)
689
- - [#103](https://github.com/hexorx/countries/pull/103) Add method to get currency code from data, without ISO4217::Currency wrapper (@scarfacedeb)
690
- - [#105](https://github.com/hexorx/countries/pull/105) Useful #to_s method (@lorddoig)
691
- - [#96](https://github.com/hexorx/countries/pull/96) Feature/mongoid (@lorddoig)
692
- - [#95](https://github.com/hexorx/countries/pull/95) Add EU membership to Croatia (@razor-rs)
693
- - [#94](https://github.com/hexorx/countries/pull/94) make country instance creation case insensitive (@jeremywrowe)
694
- - [#93](https://github.com/hexorx/countries/pull/93) Fix some spanish translations (@jrdi)
695
- - [#90](https://github.com/hexorx/countries/pull/90) Updated countries.yaml with Dutch country names/translations. (@joost)
696
- - [#89](https://github.com/hexorx/countries/pull/89) Add Dutch Caribbean (former Netherlands Antilles) countries. (@woodrow)
697
- - [#87](https://github.com/hexorx/countries/pull/87) add armed forces subdivisions to united states (@jeremywrowe)
698
- - [#82](https://github.com/hexorx/countries/pull/82) add subdivisions to morocco (@jeremywrowe)
699
- - [#83](https://github.com/hexorx/countries/pull/83) add subdivisions to marshall islands (@jeremywrowe)
700
- - [#84](https://github.com/hexorx/countries/pull/84) add subdivisions to italy (@jeremywrowe)
701
- - [#85](https://github.com/hexorx/countries/pull/85) add subdivisions to hungary (@jeremywrowe)
702
- - [#86](https://github.com/hexorx/countries/pull/86) added subdivisions to chile (@jeremywrowe)
703
- - [#88](https://github.com/hexorx/countries/pull/88) Add waffle.io badge to readme (@waffleio)
704
- - [#75](https://github.com/hexorx/countries/pull/75) Bangladesh Currency code is BDT (@bradleypriest)
705
- - [#76](https://github.com/hexorx/countries/pull/76) italian and some missing spanish translations (@lorenzopagano)
706
- - [#77](https://github.com/hexorx/countries/pull/77) Convert to string before downcasing find_all_by attribute comparison (@jeremywrowe, @npverni)
707
- - [#80](https://github.com/hexorx/countries/pull/80) adds malta subdivisions (@jeremywrowe)
708
- - [#81](https://github.com/hexorx/countries/pull/81) added additional subdivisions to Uganda (@jeremywrowe)
709
- - [#74](https://github.com/hexorx/countries/pull/74) Update Mayotte (YT) country code from 269 to 262. (@illoyd)
710
- - [#72](https://github.com/hexorx/countries/pull/72) Merge pull request #72 from jrdi/refactorize_complex_methods (@jrdi)
711
- - [#69](https://github.com/hexorx/countries/pull/69) Add configuration and build status badge for Travis CI (@dwilkie)
712
- - [#67](https://github.com/hexorx/countries/pull/67) ignore rvm (@dwilkie)
713
- - [#71](https://github.com/hexorx/countries/pull/71) Merge pull request #71 from nettsundere/translations-spec (@nettsundere)
714
- - [#68](https://github.com/hexorx/countries/pull/68) specify gem dependencies in gemspec as recommended in Gemfile (@dwilkie)
715
- - [#66](https://github.com/hexorx/countries/pull/66) Documentation for in_eu? functionality (@jgrau)
716
- - [#64](https://github.com/hexorx/countries/pull/64) Rwanda phone numbers are now 8 and 9 digits long. (@dondeng)
717
- - [#61](https://github.com/hexorx/countries/pull/61) Initialize with wrong/not-present ISO should return nil (@jrdi)
718
- - [#63](https://github.com/hexorx/countries/pull/63) Fix and add french translations (@caedes)
719
- - [#60](https://github.com/hexorx/countries/pull/60) fix 'should return alternate names' spec (@jrdi)
720
- - [#57](https://github.com/hexorx/countries/pull/57) replace .rvmrc file with .ruby-version and .ruby-gemset for new versions of rvm (@dwilkie)
721
- - [#58](https://github.com/hexorx/countries/pull/58) Abbreviations for subdivisions in thailand (@dwilkie)
722
- - [#55](https://github.com/hexorx/countries/pull/55) Japanese Translations of Countries (@pwim)
723
- - [#54](https://github.com/hexorx/countries/pull/54) EU member state data (@kevinvandijk)
724
- - [#53](https://github.com/hexorx/countries/pull/53) Don't depend on rails and country_select (@fschwahn)
725
- - [#52](https://github.com/hexorx/countries/pull/52) Use country_select gem to provide country_select form helper (@eakret)
726
- - [#51](https://github.com/hexorx/countries/pull/51) Correct Vietnam - reopen (@allika)
727
- - [#1](https://github.com/hexorx/countries/pull/1) Change 'Viet Nam' to 'Vietnam'. (@allika)
728
- - [#48](https://github.com/hexorx/countries/pull/48) Added missing continent data to Norway. (@gilbertmj)
729
- - [#46](https://github.com/hexorx/countries/pull/46) add translations (@benben)
730
- - [#45](https://github.com/hexorx/countries/pull/45) added and corrected german translations (@benben)
731
- - [#44](https://github.com/hexorx/countries/pull/44) Fix country_options_for_select for when selected = nil (the default) (@rymai)
732
- - [#43](https://github.com/hexorx/countries/pull/43) Prevent selected from being included twice in the HTML for country selector helper (@damonmorgan)
733
- - [#42](https://github.com/hexorx/countries/pull/42) Divider for "priority countries" is still escaped (@damonmorgan)
734
- - [#41](https://github.com/hexorx/countries/pull/41) Specs (@leemhenson)
735
- - [#39](https://github.com/hexorx/countries/pull/39) Add south sudan (@josepjaume)
736
- - [#38](https://github.com/hexorx/countries/pull/38) Nationalities from CIA database (@bartoszkopinski)
737
- - [#32](https://github.com/hexorx/countries/pull/32) add continents (@lukkry)
738
- - [#36](https://github.com/hexorx/countries/pull/36) Updated Libya's name (@yctay)
739
- - [#35](https://github.com/hexorx/countries/pull/35) Country#find_all_by improved (@cibernox)
740
- - [#34](https://github.com/hexorx/countries/pull/34) Country#all accepts a block to customize the output (@cibernox)
741
- - [#33](https://github.com/hexorx/countries/pull/33) Fix Hungarian subdivisions (@macat)
742
- - [#29](https://github.com/hexorx/countries/pull/29) Taiwan isn't a province of china. (@isieo)
743
-
744
- ### v0.8.3 (2012/08/19 16:54 +00:00)
745
- - [#28](https://github.com/hexorx/countries/pull/28) Update lib/data/countries.yaml (@hugovk)
746
- - [#27](https://github.com/hexorx/countries/pull/27) Updated currency of Estonia (EE) to EUR (since january 1st, 2011) (@markkorput)
747
- - [#26](https://github.com/hexorx/countries/pull/26) Fix: Mark all country names as html_safe for compatibility with Rails 3.1.4 and above (@theozaurus)
748
- - [#22](https://github.com/hexorx/countries/pull/22) Refactor internals to use Bundler for gem management instead of Jewler (@dwilkie)
749
- - [#21](https://github.com/hexorx/countries/pull/21) Makes two Country instances compare as equal if they have the same data (@fj)
750
-
751
- ### v0.8.2 (2012/03/05 17:45 +00:00)
752
- - [#18](https://github.com/hexorx/countries/pull/18) Use html_safe for country_select helper (@thibaudgg)
753
- - [#15](https://github.com/hexorx/countries/pull/15) Adding IOC and UN/LOCODE (@unnu)
754
-
755
- ### v0.8.1 (2011/12/12 19:10 +00:00)
756
- - [#13](https://github.com/hexorx/countries/pull/13) Cambodian Subdivision name change (@dwilkie)
757
-
758
- ### v0.8.0 (2011/12/12 07:25 +00:00)
759
- - [#12](https://github.com/hexorx/countries/pull/12) UTF-8 Subdivision names (@dwilkie)
760
-
761
- ### v0.7.0 (2011/12/06 19:24 +00:00)
762
- - [#11](https://github.com/hexorx/countries/pull/11) attribute based finder methods, override selected html option, fix for loading yaml. (@esfourteen)
763
-
764
- ### v0.6.3 (2011/11/22 07:40 +00:00)
765
- - [#9](https://github.com/hexorx/countries/pull/9) Update country codes (@urbanwide)
766
- - [#8](https://github.com/hexorx/countries/pull/8) remove single quote escapes from countries data (@esfourteen)
767
- - [#7](https://github.com/hexorx/countries/pull/7) Added name to authors in gem specification (@joecorcoran)
768
-
769
- ### v0.6.2 (2011/09/20 01:52 +00:00)
770
- - [#6](https://github.com/hexorx/countries/pull/6) Scope under module in select helper (@joecorcoran)
771
-
772
- ### v0.6.1 (2011/09/16 20:01 +00:00)
773
- - [#4](https://github.com/hexorx/countries/pull/4) add find_country_by_name method, use downcase in find methods (@joecorcoran)
774
-
775
- ### v0.5.3 (2011/07/12 15:26 +00:00)
776
- - [#3](https://github.com/hexorx/countries/pull/3) Fix FK country name. Thank you umka. (@umka)