Skip to content

Commit fe53b17

Browse files
committed
Changed version to v1.0.0
1 parent 6157195 commit fe53b17

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Pitcher
22

3-
Pitcher is a utility library to simplify throwing exceptions, especially when checking arguments. It's also usable to move `throw` statements out of methods, since they block inlining.
3+
Pitcher is a utility library to simplify throwing exceptions, especially when checking arguments. It makes methods easier to inline, by reducing code size.
44

55
Supported frameworks:
66

@@ -15,7 +15,7 @@ Supported frameworks:
1515
The Pitcher NuGet package is the prefered way to install and use it.
1616

1717
```powershell
18-
install-package Pitcher -pre
18+
install-package Pitcher
1919
```
2020

2121
### Pitcher.Sources

src/Pitcher.Sources/Pitcher.Sources.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>Pitcher.Sources</id>
5-
<version>1.0.0-beta4</version>
5+
<version>1.0.0</version>
66
<authors>Alex Kamsteeg</authors>
77
<licenseUrl>https://github.com/akamsteeg/Pitcher/blob/master/LICENSE</licenseUrl>
88
<projectUrl>https://github.com/akamsteeg/Pitcher</projectUrl>
99
<requireLicenseAcceptance>true</requireLicenseAcceptance>
10-
<description>Pitcher.Sources is helper library to simplify throwing exceptions and enable inlining of your methods because there are no throw statements blocking it. It's a source package for Pitcher, directly adding the code to your library or application without introducing another dependency.</description>
10+
<description>Pitcher.Sources is helper library to simplify throwing exceptions and make methods easier to inline by reducing code size. It's a source package for Pitcher, directly adding the code to your library or application without introducing another dependency.</description>
1111
<language>en-US</language>
1212
<tags>exception throw helper</tags>
1313
<developmentDependency>true</developmentDependency>

src/Pitcher/Pitcher.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<TargetFrameworks>net40;netstandard1.0;</TargetFrameworks>
55
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
66

7-
<Version>1.0.0-beta4</Version>
7+
<Version>1.0.0</Version>
88
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1010
<IncludeSymbols>True</IncludeSymbols>
11-
<Description>Pitcher is helper library to simplify throwing exceptions and enable inlining of your methods because there are no throw statements blocking it.</Description>
11+
<Description>Pitcher is helper library to simplify throwing exceptions and make methods easier to inline by reducing code size.</Description>
1212
<Copyright>© Alex Kamsteeg</Copyright>
1313
<Authors>Alex Kamsteeg (https://atlex.nl/)</Authors>
1414
<Company />

0 commit comments

Comments
 (0)