Skip to content

Commit fa5ff28

Browse files
committed
Updated the release notes and set the version number to 2.1.0
1 parent 1d1e86e commit fa5ff28

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/Pitcher/Pitcher.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
66

7-
<Version>2.0.0</Version>
7+
<Version>2.1.0</Version>
88
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1010
<Description>Pitcher is helper library to simplify throwing exceptions and make methods easier to inline by reducing code size.</Description>
@@ -15,6 +15,12 @@
1515
<PackageTags>exception throw helper</PackageTags>
1616
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1717
<PackageReleaseNotes>
18+
2.1.0:
19+
- [Feature] Use "is null" instead of "== null" for null checks (#10)
20+
- [Feature] Add Throw.ArgumentOutOfRange.WhenNegativeNumber() to throw an ArgumentOutOfRangeException when a number is less than zero (#11)
21+
- [Feature] Add Throw.ArgumentOutOfRange.WhenPositiveNumber() to throw an ArgumentOutOfRangeException when a number is zero or more (#12)
22+
- [Feature]] Add Throw.ArgumentOutOfRange.WhenLessThan&lt;T&gt;() where T is IComparable&lt;T&gt; to throw an ArgumentOutOfRangeException when the argument is less than the specified value (#13)
23+
- [Feature]] Add Throw.ArgumentOutOfRange.WhenMoreThan&lt;T&gt;() where T is IComparable&lt;T&gt; to throw an ArgumentOutOfRangeException when the argument is more than the specified value (#14)
1824
2.0.0:
1925
- [Breaking] Strong-named the assembly (#9)
2026
- [Breaking] Moved to a single NETSTANDARD2.0 TFM (#5)

0 commit comments

Comments
 (0)