Skip to content

Commit

Permalink
chore: change version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vla committed May 20, 2021
1 parent 58cc26b commit 8ed2cec
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Package | NuGet |
-------- | :------------ |
|**BloomFilter.NetCore**|[![NuGet package](https://buildstats.info/nuget/BloomFilter.NetCore)](https://www.nuget.org/packages/BloomFilter.NetCore)
|**BloomFilter.Redis.NetCore**|[![NuGet package](https://buildstats.info/nuget/BloomFilter.Redis.NetCore)](https://www.nuget.org/packages/BloomFilter.Redis.NetCore)
|**BloomFilter.CSRedis.NetCore**|[![NuGet package](https://buildstats.info/nuget/BloomFilter.CSRedis.NetCore)](https://www.nuget.org/packages/BloomFilter.CSRedis.NetCore)
|**BloomFilter.EasyCaching.NetCore**|[![NuGet package](https://buildstats.info/nuget/BloomFilter.EasyCaching.NetCore)](https://www.nuget.org/packages/BloomFilter.EasyCaching.NetCore)


Usage
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
1.0.0
4 changes: 4 additions & 0 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ set /p ver=<VERSION

dotnet restore src/BloomFilter
dotnet restore src/BloomFilter.Redis
dotnet restore src/BloomFilter.CSRedis
dotnet restore src/BloomFilter.EasyCaching

dotnet pack src/BloomFilter -c release -p:Ver=%ver% -o %artifacts%
dotnet pack src/BloomFilter.Redis -c release -p:Ver=%ver% -o %artifacts%
dotnet pack src/BloomFilter.CSRedis -c release -p:Ver=%ver% -o %artifacts%
dotnet pack src/BloomFilter.EasyCaching -c release -p:Ver=%ver% -o %artifacts%

pause
2 changes: 2 additions & 0 deletions nuget_push.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ set sourceUrl=-s https://www.nuget.org/api/v2/package

dotnet nuget push artifacts/BloomFilter.NetCore.%ver%.nupkg %sourceUrl%
dotnet nuget push artifacts/BloomFilter.Redis.NetCore.%ver%.nupkg %sourceUrl%
dotnet nuget push artifacts/BloomFilter.CSRedis.NetCore.%ver%.nupkg %sourceUrl%
dotnet nuget push artifacts/BloomFilter.EasyCaching.NetCore.%ver%.nupkg %sourceUrl%

0 comments on commit 8ed2cec

Please sign in to comment.