Skip to content
This repository was archived by the owner on Jan 19, 2021. It is now read-only.

Commit b39209f

Browse files
Merge pull request #1879 from SharePoint/dev
February 2019 Intermediate release
2 parents 1d485fd + 08ff68d commit b39209f

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55

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

8+
## [3.6.1902.1]
9+
10+
### Added
11+
12+
### Changed
13+
- Fixed Set-PnPTenantSite where the NoScriptSite parameter would always be set to false if not specified.
14+
15+
### Contributors
16+
17+
818
## [3.6.1902.0]
919

1020
### Added

Commands/Admin/SetTenantSite.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public class SetTenantSite : PnPAdminCmdlet
6767
public SiteLockState? LockState;
6868

6969
[Parameter(Mandatory = false, HelpMessage = "Specifies if a site allows custom script or not. See https://support.office.com/en-us/article/Turn-scripting-capabilities-on-or-off-1f2c515f-5d7e-448a-9fd7-835da935584f for more information.", ParameterSetName = ParameterSet_PROPERTIES)]
70-
public SwitchParameter NoScriptSite;
70+
public SwitchParameter? NoScriptSite;
7171

7272
[Parameter(Mandatory = false, HelpMessage = @"Specifies the default link permission for the site collection. None - Respect the organization default link permission. View - Sets the default link permission for the site to ""view"" permissions. Edit - Sets the default link permission for the site to ""edit"" permissions", ParameterSetName = ParameterSet_PROPERTIES)]
7373
public SharingPermissionType? DefaultLinkPermission;

Commands/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@
4848
// You can specify all the values or you can default the Build and Revision Numbers
4949
// by using the '*' as shown below:
5050
// [assembly: AssemblyVersion("1.0.*")]
51-
[assembly: AssemblyVersion("3.6.1902.0")]
52-
[assembly: AssemblyFileVersion("3.6.1902.0")]
51+
[assembly: AssemblyVersion("3.6.1902.1")]
52+
[assembly: AssemblyFileVersion("3.6.1902.1")]
5353
[assembly: InternalsVisibleTo("SharePointPnP.PowerShell.Tests")]

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.6.1902.0
1+
3.6.1902.1

0 commit comments

Comments
 (0)