Skip to content

Commit

Permalink
amendment 177: ZWL -> ZWG
Browse files Browse the repository at this point in the history
  • Loading branch information
dgg committed Jul 3, 2024
1 parent b973c62 commit 8f5646b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
18 changes: 16 additions & 2 deletions src/NMoneys/CurrencyIsoCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2536,16 +2536,30 @@ public enum CurrencyIsoCode : ushort
ZMW = 967,

/// <summary>
/// Zimbabwe Dollar
/// Zimbabwe Gold
/// </summary>
[CanonicalCulture("en-ZW", Overwritten = true)]
[Info(
englishName: "Zimbabwe Dollar", nativeName: "Zimbabwean dollar", symbol: "Z$",
englishName: "Zimbabwe Gold", nativeName: "Zimbabwe Gold", symbol: "Z$",
significantDecimalDigits: 2,
decimalSeparator: ".",
groupSeparator: ",", groupSizes: new byte[] { 3 },
positivePattern: 0, negativePattern: 1
)]
ZWG = 924,

/// <summary>
/// Zimbabwe Dollar
/// </summary>
[CanonicalCulture("en-ZW", Overwritten = true), Obsolete("deprecated in favor of ZWG")]
[Info(
englishName: "Zimbabwe Dollar", nativeName: "Zimbabwean dollar", symbol: "Z$",
significantDecimalDigits: 2,
decimalSeparator: ".",
groupSeparator: ",", groupSizes: new byte[] { 3 },
positivePattern: 0, negativePattern: 1,
isObsolete: true
)]
ZWL = 932
}
#pragma warning restore CA1008, CA1028
8 changes: 4 additions & 4 deletions src/NMoneys/NMoneys.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
</PropertyGroup>

<PropertyGroup>
<Version>7.2.0</Version>
<AssemblyVersion>7.2.0.0</AssemblyVersion>
<FileVersion>7.2.0.0</FileVersion>
<PackageVersion>7.2.0</PackageVersion>
<Version>7.3.0</Version>
<AssemblyVersion>7.3.0.0</AssemblyVersion>
<FileVersion>7.3.0.0</FileVersion>
<PackageVersion>7.3.0</PackageVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 8f5646b

Please sign in to comment.