Skip to content

Commit

Permalink
Backport 'v3.3.4' into net_35
Browse files Browse the repository at this point in the history
  • Loading branch information
workgroupengineering committed Aug 4, 2022
2 parents c539328 + 5ee32d0 commit 1feabe8
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

## In Development

v 3.3.4
-------

Released on August 4, 2022

- 'EL' (Grecia) aggiunto ai valori convalidati per IdPaese, in alternativa a 'GR' ([#374][374]).
- 'OO' (Campione d'Italia e Livigno) aggiunto ai valori convalidati per IdPaese ([#370][370]).

[370]: https://github.com/FatturaElettronica/FatturaElettronica.NET/issues/370
[374]: https://github.com/FatturaElettronica/FatturaElettronica.NET/issues/374

v 3.3.3
-------

Expand Down
15 changes: 8 additions & 7 deletions src/FatturaElettronica/Tabelle/IdPaese.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public override Tabella[] List
new IdPaese { Nome = "Germania", Codice = "DE" },
new IdPaese { Nome = "Ghana", Codice = "GH" },
new IdPaese { Nome = "Gibilterra", Codice = "GI" },
new IdPaese { Nome = "Grecia", Codice = "GR" },
new IdPaese { Nome = "Grecia GR", Codice = "GR" },
new IdPaese { Nome = "Groenlandia", Codice = "GL" },
new IdPaese { Nome = "Grenada", Codice = "GD" },
new IdPaese { Nome = "Guadalupa", Codice = "GP" },
Expand All @@ -114,12 +114,6 @@ public override Tabella[] List
new IdPaese { Nome = "Iran", Codice = "IR" },
new IdPaese { Nome = "Iraq", Codice = "IQ" },
new IdPaese { Nome = "Irlanda", Codice = "IE" },

// Currently not officially supported, as not included in ISO_3166-1. See:
// https://github.com/FatturaElettronica/FatturaElettronica.NET/issues/314
// https://it.wikipedia.org/wiki/ISO_3166-1_alpha-2
new IdPaese { Nome = "Irlanda del Nord", Codice = "XI" },

new IdPaese { Nome = "Isola di Man", Codice = "IM" },
new IdPaese { Nome = "Israele", Codice = "IL" },
new IdPaese { Nome = "Italia", Codice = "IT" },
Expand Down Expand Up @@ -263,6 +257,13 @@ public override Tabella[] List
new IdPaese { Nome = "Zambia", Codice = "ZM" },
new IdPaese { Nome = "Zimbabwe", Codice = "ZW" },
new IdPaese { Nome = "Kosovo", Codice = "XK" },
// https://github.com/FatturaElettronica/FatturaElettronica.NET/issues/314
new IdPaese { Nome = "Irlanda del Nord", Codice = "XI" },
// https://github.com/FatturaElettronica/FatturaElettronica.NET/issues/370
new IdPaese { Nome = "Campione d'Italia e Livigno", Codice = "OO" },
// https://github.com/FatturaElettronica/FatturaElettronica.NET/issues/374
new IdPaese { Nome = "Grecia EL", Codice = "EL" }

};
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/PackageInfo.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project DefaultTargets="Build"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Version>3.3.3</Version>
<Version>3.3.4</Version>
<PackageId>FatturaElettronica.NET35</PackageId>
<PackageIcon>fattura_elettronica.png</PackageIcon>
<RepositoryType>git</RepositoryType>
Expand Down

0 comments on commit 1feabe8

Please sign in to comment.