Skip to content

Commit

Permalink
Backport v3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
workgroupengineering committed Apr 8, 2022
2 parents 59099fd + 75c5845 commit 2112b57
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
## In Development

- hic sunt leones

v 3.3.1
-------

Released on April 6, 2022

- Fix: CodiceArticolo va convalidato come `LatinExtType` ([#368][368])

[368]: https://github.com/FatturaElettronica/FatturaElettronica.NET/issues/368

v 3.3.0
-------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public CodiceArticoloValidator()
.Length(1, 35);
RuleFor(x => x.CodiceValore)
.NotEmpty()
.BasicLatinValidator()
.Latin1SupplementValidator()
.Length(1, 35);
}
}
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.0</Version>
<Version>3.3.1</Version>
<PackageId>FatturaElettronica.NET35</PackageId>
<PackageIcon>fattura_elettronica.png</PackageIcon>
<RepositoryType>git</RepositoryType>
Expand Down
2 changes: 1 addition & 1 deletion src/Test/Ordinaria/CodiceArticoloValidator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public void CodiceValoreMinMaxLength()
[TestMethod]
public void CodiceValoreMustBeBasicLatin()
{
AssertMustBeBasicLatin(x => x.CodiceValore);
AssertMustBeLatin1Supplement(x => x.CodiceValore);
}
}
}

0 comments on commit 2112b57

Please sign in to comment.