Skip to content

Commit d7b19ce

Browse files
Merge pull request #1908 from microsoft/vnext
Release hidi
2 parents 18482f3 + 766f217 commit d7b19ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Microsoft.OpenApi.Hidi/Microsoft.OpenApi.Hidi.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Nullable>enable</Nullable>
1010
<ToolCommandName>hidi</ToolCommandName>
1111
<PackageOutputPath>./../../artifacts</PackageOutputPath>
12-
<Version>1.4.14</Version>
12+
<Version>1.4.15</Version>
1313
<Description>OpenAPI.NET CLI tool for slicing OpenAPI documents</Description>
1414
<SignAssembly>true</SignAssembly>
1515
<!-- https://github.com/dotnet/sourcelink/blob/main/docs/README.md#embeduntrackedsources -->

src/Microsoft.OpenApi.Hidi/OpenApiService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public static async Task TransformOpenApiDocumentAsync(HidiOptions options, ILog
7777
throw new IOException($"The file {options.Output} already exists. Please input a new file path.");
7878
}
7979

80-
// Default to yaml and OpenApiVersion 3 during csdl to OpenApi conversion
80+
// Default to yaml and OpenApiVersion 3_1 during csdl to OpenApi conversion
8181
var openApiFormat = options.OpenApiFormat ?? (!string.IsNullOrEmpty(options.OpenApi) ? GetOpenApiFormat(options.OpenApi, logger) : OpenApiFormat.Yaml);
8282
var openApiVersion = options.Version != null ? TryParseOpenApiSpecVersion(options.Version) : OpenApiSpecVersion.OpenApi3_1;
8383

0 commit comments

Comments
 (0)