Skip to content

Commit

Permalink
Updates version and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
andrueastman committed Jan 25, 2023
1 parent 2e28e18 commit d06ae5c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/validatePullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
env:
solutionName: Microsoft.Graph.Beta.sln
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.3.0
- name: Setup .NET
uses: actions/setup-dotnet@v1.9.0
uses: actions/setup-dotnet@v3.0.3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
Expand All @@ -34,12 +34,12 @@ jobs:
language: [ 'csharp' ]
steps:
- name: Checkout repository
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.3.0
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project does NOT adhere to [Semantic Versioning](https://semver.org/spe

## [Unreleased]

## [5.18.0-preview] - 2023-01-16

- Adds support for nullable reference types.
- Latest metadata updates from 24th January 2023 snapshot.

## [5.17.0-preview] - 2023-01-16
Expand Down
14 changes: 11 additions & 3 deletions src/Microsoft.Graph/Microsoft.Graph.Beta.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<PackageReleaseNotes>
- Fixed a regression where passing custom base url would not be reflected in the requests.
- Latest metadata updates from 12th January 2023 snapshot
- Adds support for nullable reference types.
- Latest metadata updates from 24th January 2023 snapshot.
</PackageReleaseNotes>
<!-- edit this value to change the current major.minor.patch version -->
<VersionPrefix>5.17.0</VersionPrefix>
<VersionPrefix>5.18.0</VersionPrefix>
<!-- adds a version suffix if the Prerelease environment variable is set. BUILD_BUILDID is an
environment variable set by Azure pipelines from the build. We can use the buildid to correlate
which commit was used to generate the preview build. -->
Expand All @@ -45,6 +45,14 @@
<DocumentationFile>bin\Release\Microsoft.Graph.Beta.xml</DocumentationFile>
<NoWarn>1701;1702;1705;1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.1|AnyCPU'">
<DocumentationFile>bin\Debug\Microsoft.Graph.Beta.xml</DocumentationFile>
<NoWarn>1701;1702;1705;1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.1|AnyCPU'">
<DocumentationFile>bin\Release\Microsoft.Graph.Beta.xml</DocumentationFile>
<NoWarn>1701;1702;1705;1591</NoWarn>
</PropertyGroup>
<!-- https://github.com/clairernovotny/DeterministicBuilds#deterministic-builds -->
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
Expand Down

0 comments on commit d06ae5c

Please sign in to comment.