Skip to content

Commit f06a33b

Browse files
committed
Increment version
1 parent a5fae69 commit f06a33b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/nuget_push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@v1
1414

1515
- name: Setup .NET Core @ Latest
16-
uses: actions/setup-dotnet@v3
16+
uses: actions/setup-dotnet@v4
1717
with:
1818
dotnet-version: '8.0.x'
1919

.github/workflows/nuget_push_aspnetcore.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
uses: actions/checkout@v1
1414

1515
- name: Setup .NET Core @ Latest
16-
uses: actions/setup-dotnet@v3
16+
uses: actions/setup-dotnet@v4
1717
with:
1818
dotnet-version: '8.0.x'
1919

2020
- name: Build and Publish
2121
run: |
2222
cd ./src/RedisRateLimiting.AspNetCore/
23-
dotnet pack -c Release -o artifacts -p:PackageVersion=1.1.0
23+
dotnet pack -c Release -o artifacts -p:PackageVersion=1.2.0
2424
2525
- name: Push
26-
run: dotnet nuget push ./src/RedisRateLimiting.AspNetCore/artifacts/RedisRateLimiting.AspNetCore.1.1.0.nupkg -k ${{ secrets.NUGET_APIKEY }} -s https://api.nuget.org/v3/index.json
26+
run: dotnet nuget push ./src/RedisRateLimiting.AspNetCore/artifacts/RedisRateLimiting.AspNetCore.1.2.0.nupkg -k ${{ secrets.NUGET_APIKEY }} -s https://api.nuget.org/v3/index.json

src/RedisRateLimiting.AspNetCore/RedisRateLimiting.AspNetCore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1414
<RepositoryType>git</RepositoryType>
1515
<RepositoryUrl>https://github.com/cristipufu/aspnetcore-redis-rate-limiting</RepositoryUrl>
16-
<Version>1.1.0</Version>
16+
<Version>1.2.0</Version>
1717
<ImplicitUsings>enable</ImplicitUsings>
1818
<PackageReadmeFile>README.md</PackageReadmeFile>
1919
</PropertyGroup>
@@ -30,6 +30,6 @@
3030
<ProjectReference Include="..\RedisRateLimiting\RedisRateLimiting.csproj" />
3131
</ItemGroup>
3232
<ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
33-
<PackageReference Include="RedisRateLimiting" Version="1.1.0" />
33+
<PackageReference Include="RedisRateLimiting" Version="1.2.0" />
3434
</ItemGroup>
3535
</Project>

0 commit comments

Comments
 (0)