Skip to content

Commit

Permalink
Version 1.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bjansen committed Aug 16, 2024
1 parent c42cf43 commit 4d9027e
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build/release-official.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dotnet build $PSScriptRoot\..\src\lib\PnP.Framework\PnP.Framework.csproj --confi

# Sign the binaries
Write-Host "Signing the binaries..."
d:\github\SharePointPnP\CodeSigning\PnP\sign-pnpbinaries.ps1 -SignJson pnpframeworkassemblies
q:\github\SharePointPnP\CodeSigning\PnP\sign-pnpbinaries.ps1 -SignJson pnpframeworkassemblies

# Package the release version
Write-Host "Packinging PnP.Framework version $version..."
Expand All @@ -30,7 +30,7 @@ $apiKey = Read-Host "NuGet API key"
if ($apiKey.Length -gt 0)
{
# Push the actual package and the symbol package
nuget push d:\github\pnpframework\src\lib\PnP.Framework\bin\release\PnP.Framework.$version.nupkg -ApiKey $apiKey -source https://api.nuget.org/v3/index.json
nuget push q:\github\pnpframework\src\lib\PnP.Framework\bin\release\PnP.Framework.$version.nupkg -ApiKey $apiKey -source https://api.nuget.org/v3/index.json

# Persist last used version
Write-Host "Writing $version to git"
Expand Down
4 changes: 2 additions & 2 deletions build/release-signed-nightly.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dotnet build $PSScriptRoot\..\src\lib\PnP.Framework\PnP.Framework.csproj --confi

# Sign the binaries
Write-Host "Signing the binaries..."
d:\github\SharePointPnP\CodeSigning\PnP\sign-pnpbinaries.ps1 -SignJson pnpframeworkassemblies
q:\github\SharePointPnP\CodeSigning\PnP\sign-pnpbinaries.ps1 -SignJson pnpframeworkassemblies

# Package the release version
Write-Host "Packinging PnP.Framework version $version..."
Expand All @@ -30,7 +30,7 @@ $apiKey = Read-Host "NuGet API key"
if ($apiKey.Length -gt 0)
{
# Push the actual package and the symbol package
nuget push d:\github\pnpframework\src\lib\PnP.Framework\bin\release\PnP.Framework.$version.nupkg -ApiKey $apiKey -source https://api.nuget.org/v3/index.json
nuget push q:\github\pnpframework\src\lib\PnP.Framework\bin\release\PnP.Framework.$version.nupkg -ApiKey $apiKey -source https://api.nuget.org/v3/index.json

# Persist last used version
Write-Host "Writing $version to git"
Expand Down
2 changes: 1 addition & 1 deletion build/version.debug
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.16.{incremental}-nightly
1.17.{incremental}-nightly
2 changes: 1 addition & 1 deletion build/version.debug.increment
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7
0
2 changes: 1 addition & 1 deletion build/version.release.increment
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16
17
2 changes: 1 addition & 1 deletion src/lib/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [Unreleased]
## [1.17.0]

### Added

Expand Down
2 changes: 1 addition & 1 deletion src/lib/PnP.Framework.Test/PnP.Framework.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
<PackageReference Include="PrivateObjectExtensions" Version="1.4.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="8.0.0" />
<PackageReference Include="PnP.Core" Version="1.13.*-*" Condition="'$(PnPCoreSdkPath)' == ''" />
<PackageReference Include="PnP.Core" Version="1.14.*-*" Condition="'$(PnPCoreSdkPath)' == ''" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/lib/PnP.Framework/PnP.Framework.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<LangVersion>10.0</LangVersion>
<RootNamespace>PnP.Framework</RootNamespace>
<AssemblyName>PnP.Framework</AssemblyName>
<Version>1.16.0</Version>
<Version>1.17.0</Version>
<Authors>PnP</Authors>
<Copyright>PnP 2024</Copyright>
<Description>PnP Framework contains the PnP Provisioning engine and a ton of extension methods that will make you more productive while developing for Microsoft 365.</Description>
Expand Down Expand Up @@ -257,7 +257,7 @@
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
<PackageReference Include="Microsoft.SharePointOnline.CSOM" Version="16.1.*" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="PnP.Core" Version="1.13.*-*" Condition="'$(PnPCoreSdkPath)' == ''" />
<PackageReference Include="PnP.Core" Version="1.14.*-*" Condition="'$(PnPCoreSdkPath)' == ''" />
<PackageReference Include="Portable.Xaml" Version="0.26.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.35.0" />
</ItemGroup>
Expand Down

0 comments on commit 4d9027e

Please sign in to comment.