Skip to content

Commit 15ed55d

Browse files
committed
Release 3.1.0
1 parent e77c52b commit 15ed55d

File tree

4 files changed

+26
-12
lines changed

4 files changed

+26
-12
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ All notable changes to this project will be documented in this file.
66

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

9-
## [Current nightly]
9+
10+
## [Current Nightly]
1011

1112
### Added
1213

@@ -17,6 +18,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
1718
### Contributors
1819

1920

21+
## [3.1.0]
22+
23+
### Added
24+
25+
### Fixed
26+
- Fixed issues with cmdlets not being able to read embedded resources
27+
28+
### Removed
29+
30+
### Contributors
31+
- Erwin van Hunen [erwinvanhunen]
32+
- Bert Jansen [jansenbe]
33+
2034
## [3.0.0]
2135

2236
### Added

src/Commands/PnP.PowerShell.csproj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,17 @@
5353

5454
<ItemGroup>
5555
<PackageReference Include="Microsoft.SharePointOnline.CSOM" Version="16.1.*" />
56-
<PackageReference Include="PnP.Framework" Version="1.18.0" Condition="'$(PnPFrameworkPath)' == '' and '$(IsRelease)' != '1'" />
57-
<PackageReference Include="PnP.Framework" Version="1.18.0" Condition="'$(IsRelease)' == '1'" />
56+
<PackageReference Include="PnP.Framework" Version="1.18.*-*" Condition="'$(PnPFrameworkPath)' == '' and '$(IsRelease)' != '1'" />
57+
<PackageReference Include="PnP.Framework" Version="1.18.*-*" Condition="'$(IsRelease)' == '1'" />
5858

59-
<PackageReference Include="PnP.Core" Version="1.15.0" Condition="'$(PnPCoreSdkPath)' == '' and '$(IsRelease)' != '1'" />
60-
<PackageReference Include="PnP.Core" Version="1.15.0" Condition="'$(IsRelease)' == '1'" />
59+
<PackageReference Include="PnP.Core" Version="1.15.*-*" Condition="'$(PnPCoreSdkPath)' == '' and '$(IsRelease)' != '1'" />
60+
<PackageReference Include="PnP.Core" Version="1.15.*-*" Condition="'$(IsRelease)' == '1'" />
6161

62-
<PackageReference Include="PnP.Core.Auth" Version="1.15.0" Condition="'$(PnPCoreSdkPath)' == '' and '$(IsRelease)' != '1'" />
63-
<PackageReference Include="PnP.Core.Auth" Version="1.15.0" Condition="'$(IsRelease)' == '1'" />
62+
<PackageReference Include="PnP.Core.Auth" Version="1.15.*-*" Condition="'$(PnPCoreSdkPath)' == '' and '$(IsRelease)' != '1'" />
63+
<PackageReference Include="PnP.Core.Auth" Version="1.15.*-*" Condition="'$(IsRelease)' == '1'" />
6464

65-
<PackageReference Include="PnP.Core.Admin" Version="1.15.0" Condition="'$(PnPCoreSdkPath)' == '' and '$(IsRelease)' != '1'" />
66-
<PackageReference Include="PnP.Core.Admin" Version="1.15.0" Condition="'$(IsRelease)' == '1'" />
65+
<PackageReference Include="PnP.Core.Admin" Version="1.15.*-*" Condition="'$(PnPCoreSdkPath)' == '' and '$(IsRelease)' != '1'" />
66+
<PackageReference Include="PnP.Core.Admin" Version="1.15.*-*" Condition="'$(IsRelease)' == '1'" />
6767

6868
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.70.2" />
6969
<PackageReference Include="Microsoft.Bcl.Cryptography" Version="9.0.2" />
@@ -126,7 +126,7 @@
126126
<EmbeddedResource Update="Properties\Resources.resx">
127127
<Generator>ResXFileCodeGenerator</Generator>
128128
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
129-
<CustomToolNamespace></CustomToolNamespace>
129+
<CustomToolNamespace></CustomToolNamespace>
130130
</EmbeddedResource>
131131
</ItemGroup>
132132

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"Version": "3.0.1",
2+
"Version": "3.1.0",
33
"Message": ""
44
}

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.1
1+
3.1.0

0 commit comments

Comments
 (0)