Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating country name for Türkiye (formerly Turkey) #36

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ obj/
_ReSharper*/
[Tt]est[Rr]esult*
*.nupkg
.vs/
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Updated country name from Turkey to T�rkiye (TR, TUR, 792)

## [1.0.4] - 2022-05-19

### Added
Expand Down
6 changes: 3 additions & 3 deletions Country.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* ISO 3166-1 country codes
*
* Last check against the official ISO 3166 as on https://www.iso.org/obp/ui/#search: 8th January 2020.
* Last check against the official ISO 3166 as on https://www.iso.org/obp/ui/#search: 26th October 2024.
*/
namespace ISO3166
{
Expand Down Expand Up @@ -248,7 +248,7 @@ private Country(string name, string twoLetterCode, string threeLetterCode, strin
new Country("Tonga", "TO", "TON", "776"),
new Country("Trinidad and Tobago", "TT", "TTO", "780"),
new Country("Tunisia", "TN", "TUN", "788"),
new Country("Turkey", "TR", "TUR", "792"),
new Country("Türkiye", "TR", "TUR", "792"),
new Country("Turkmenistan", "TM", "TKM", "795"),
new Country("Turks and Caicos Islands", "TC", "TCA", "796"),
new Country("Tuvalu", "TV", "TUV", "798"),
Expand All @@ -270,7 +270,7 @@ private Country(string name, string twoLetterCode, string threeLetterCode, strin
new Country("Yemen", "YE", "YEM", "887"),
new Country("Zambia", "ZM", "ZMB", "894"),
new Country("Zimbabwe", "ZW", "ZWE", "716"),
new Country("Åland Islands", "AX", "ALA", "248")
new Country("Åland Islands", "AX", "ALA", "248")
};
}
}