Skip to content

Commit 22308bc

Browse files
authored
Merge pull request #915 from microsoft/bugfix/version-condition
- removes unecessary condition for get version step
2 parents 4c8ab29 + 2ae43e8 commit 22308bc

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

.github/workflows/docker.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ jobs:
2828
echo "::set-output name=version::${version}"
2929
shell: pwsh
3030
id: getversion
31-
if: contains(github.ref, 'refs/tags/v')
32-
env:
33-
BRANCH_NAME: ${{ github.ref }}
3431
- name: Push to GitHub Packages - Nightly
3532
if: contains(github.ref, 'refs/head/vnext')
3633
uses: docker/[email protected]

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
<PackageId>Microsoft.OpenApi.Hidi</PackageId>
1616
<ToolCommandName>hidi</ToolCommandName>
1717
<PackageOutputPath>./../../artifacts</PackageOutputPath>
18-
<Version>1.0.0-preview5</Version>
18+
<Version>1.0.0-preview6</Version>
1919
<Description>OpenAPI.NET CLI tool for slicing OpenAPI documents</Description>
2020
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
2121
<PackageTags>OpenAPI .NET</PackageTags>
2222
<RepositoryUrl>https://github.com/Microsoft/OpenAPI.NET</RepositoryUrl>
2323
<PackageReleaseNotes>
24-
- Enables discriminator values
25-
- Adds new OpenAPI convert setting, ExpandDerivedTypesNavigationProperties and sets it to false
26-
- Bumps up the Microsoft.OpenApi.OData library to v1.0.11-preview2
24+
- Bumps up the Microsoft.OpenAPI library to v1.3.2
25+
- Bumps up the Microsoft.OData library to v7.12.0
26+
- Bumps up the Microsoft.OpenApi.OData library to v1.0.11-preview3
2727
</PackageReleaseNotes>
2828
<AssemblyName>Microsoft.OpenApi.Hidi</AssemblyName>
2929
<RootNamespace>Microsoft.OpenApi.Hidi</RootNamespace>

src/Microsoft.OpenApi.Readers/Microsoft.OpenApi.Readers.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
<Company>Microsoft</Company>
1111
<Title>Microsoft.OpenApi.Readers</Title>
1212
<PackageId>Microsoft.OpenApi.Readers</PackageId>
13-
<Version>1.3.1</Version>
13+
<Version>1.3.2</Version>
1414
<Description>OpenAPI.NET Readers for JSON and YAML documents</Description>
1515
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
1616
<PackageTags>OpenAPI .NET</PackageTags>
1717
<RepositoryUrl>https://github.com/Microsoft/OpenAPI.NET</RepositoryUrl>
1818
<PackageReleaseNotes>
19-
- Publish symbols.
19+
- Fixed a bug where contact information would not read properly. #892
2020
</PackageReleaseNotes>
2121
<AssemblyName>Microsoft.OpenApi.Readers</AssemblyName>
2222
<RootNamespace>Microsoft.OpenApi.Readers</RootNamespace>

src/Microsoft.OpenApi/Microsoft.OpenApi.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
<Company>Microsoft</Company>
1212
<Title>Microsoft.OpenApi</Title>
1313
<PackageId>Microsoft.OpenApi</PackageId>
14-
<Version>1.3.1</Version>
14+
<Version>1.3.2</Version>
1515
<Description>.NET models with JSON and YAML writers for OpenAPI specification</Description>
1616
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
1717
<PackageTags>OpenAPI .NET</PackageTags>
1818
<RepositoryUrl>https://github.com/Microsoft/OpenAPI.NET</RepositoryUrl>
1919
<PackageReleaseNotes>
20-
- Publish symbols.
20+
- Adds support for c-style hex notation strings. #908
2121
</PackageReleaseNotes>
2222
<AssemblyName>Microsoft.OpenApi</AssemblyName>
2323
<RootNamespace>Microsoft.OpenApi</RootNamespace>

0 commit comments

Comments
 (0)