Skip to content

Commit 1806f0e

Browse files
committed
[edit] version/changelog
1 parent fcafcbe commit 1806f0e

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

src/Simplify.Web.Swagger/CHANGELOG.md

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

3+
## [0.4.1] - 2023-12-22
4+
5+
### Fixed
6+
7+
- Error while passing null args to AddSimplifyWebSwagger
8+
39
## [0.4] - 2023-12-21
410

511
### Added

src/Simplify.Web.Swagger/Simplify.Web.Swagger.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111

12-
<Version>0.4</Version>
12+
<Version>0.4.1</Version>
1313

1414
<Description>Swagger extensions for Simplify.Web web-framework</Description>
1515
<Product>Simplify</Product>

src/Simplify.Web.Swagger/SimplifyWebSwaggerExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ public static class SimplifyWebSwaggerServiceCollectionExtensions
1212
/// Add Simplify.Web controllers to Swagger documentation generation
1313
/// </summary>
1414
public static void AddSimplifyWebSwagger(this SwaggerGenOptions options, SimplifyWebSwaggerArgs? args = null)
15-
{
15+
{
1616
if (args is null)
1717
options.DocumentFilter<SimplifyWebDocumentFilter>();
18-
else
18+
else
1919
options.DocumentFilter<SimplifyWebDocumentFilter>(args);
2020
}
2121
}

0 commit comments

Comments
 (0)