Skip to content

Commit 539f96b

Browse files
author
rmorris
committed
Prep for 6.1.4 release
1 parent be4103d commit 539f96b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Once you have an API that can describe itself in Swagger, you've opened the trea
2222
|Swashbuckle Version|ASP.NET Core|Swagger / OpenAPI Spec.|swagger-ui|ReDoc UI|
2323
|----------|----------|----------|----------|----------|
2424
|[master](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/master/README.md)|>= 2.0.0|2.0, 3.0|3.47.1|2.0.0-rc.40|
25-
|[6.1.3](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/v6.1.3)|>= 2.0.0|2.0, 3.0|3.47.1|2.0.0-rc.40|
25+
|[6.1.4](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/v6.1.4)|>= 2.0.0|2.0, 3.0|3.47.1|2.0.0-rc.40|
2626
|[5.6.3](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/v5.6.3)|>= 2.0.0|2.0, 3.0|3.32.5|2.0.0-rc.40|
2727
|[4.0.0](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/v4.0.0)|>= 2.0.0, < 3.0.0|2.0|3.19.5|1.22.2|
2828
|[3.0.0](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/v3.0.0)|>= 1.0.4, < 3.0.0|2.0|3.17.1|1.20.0|
@@ -33,8 +33,8 @@ Once you have an API that can describe itself in Swagger, you've opened the trea
3333
1. Install the standard Nuget package into your ASP.NET Core application.
3434

3535
```
36-
Package Manager : Install-Package Swashbuckle.AspNetCore -Version 6.1.3
37-
CLI : dotnet add package --version 6.1.3 Swashbuckle.AspNetCore
36+
Package Manager : Install-Package Swashbuckle.AspNetCore -Version 6.1.4
37+
CLI : dotnet add package --version 6.1.4 Swashbuckle.AspNetCore
3838
```
3939
4040
2. In the `ConfigureServices` method of `Startup.cs`, register the Swagger generator, defining one or more Swagger documents.
@@ -98,8 +98,8 @@ If you're using **System.Text.Json (STJ)**, then the setup described above will
9898
If you're using **Newtonsoft**, then you'll need to install a separate package and explicitly opt-in to ensure that *Newtonsoft* settings/attributes are automatically honored by the Swagger generator:
9999
100100
```
101-
Package Manager : Install-Package Swashbuckle.AspNetCore.Newtonsoft -Version 6.1.3
102-
CLI : dotnet add package --version 6.1.3 Swashbuckle.AspNetCore.Newtonsoft
101+
Package Manager : Install-Package Swashbuckle.AspNetCore.Newtonsoft -Version 6.1.4
102+
CLI : dotnet add package --version 6.1.4 Swashbuckle.AspNetCore.Newtonsoft
103103
```
104104
105105
```csharp
@@ -1495,7 +1495,7 @@ It's packaged as a [.NET Core Tool](https://docs.microsoft.com/en-us/dotnet/core
14951495
1. Install as a [global tool](https://docs.microsoft.com/en-us/dotnet/core/tools/global-tools#install-a-global-tool)
14961496
14971497
```
1498-
dotnet tool install -g --version 6.1.3 Swashbuckle.AspNetCore.Cli
1498+
dotnet tool install -g --version 6.1.4 Swashbuckle.AspNetCore.Cli
14991499
```
15001500

15011501
2. Verify that the tool was installed correctly
@@ -1526,7 +1526,7 @@ It's packaged as a [.NET Core Tool](https://docs.microsoft.com/en-us/dotnet/core
15261526
2. Install as a [local tool](https://docs.microsoft.com/en-us/dotnet/core/tools/global-tools#install-a-local-tool)
15271527
15281528
```
1529-
dotnet tool install --version 6.1.3 Swashbuckle.AspNetCore.Cli
1529+
dotnet tool install --version 6.1.4 Swashbuckle.AspNetCore.Cli
15301530
```
15311531

15321532
3. Verify that the tool was installed correctly

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PublishRepositoryUrl>true</PublishRepositoryUrl>
77
<PackageLicenseExpression>MIT</PackageLicenseExpression>
88
<LicenseUrl>https://licenses.nuget.org/MIT</LicenseUrl>
9-
<VersionPrefix>6.1.3</VersionPrefix>
9+
<VersionPrefix>6.1.4</VersionPrefix>
1010
</PropertyGroup>
1111

1212
<ItemGroup>

0 commit comments

Comments
 (0)