Skip to content

Commit

Permalink
version 0.2.3
Browse files Browse the repository at this point in the history
updated dotnet cli to 3.1.201 fix #6
  • Loading branch information
Legion2 committed Aug 3, 2020
1 parent d7dace0 commit 85465d0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.201
dotnet-version: 3.1.302
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.201
dotnet-version: 3.1.302
- name: Install dependencies
run: dotnet restore
- name: Publish
Expand Down
2 changes: 1 addition & 1 deletion open-cue-service.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<Title>Open CUE Service</Title>
<Version>0.2.2</Version>
<Version>0.2.3</Version>
<Authors>Legion2</Authors>
<Description>HTTP REST API service for Open CUE CLI</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand Down
2 changes: 1 addition & 1 deletion src/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void ConfigureServices(IServiceCollection services)
document.DocumentName = "openapi";
document.Title = "Open CUE Service";
document.Description = "HTTP REST API service for Open CUE CLI";
document.Version = "0.2.2";
document.Version = "0.2.3";
});
}

Expand Down

0 comments on commit 85465d0

Please sign in to comment.