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

Commit

Permalink
Merge pull request #1879 from SharePoint/dev
Browse files Browse the repository at this point in the history
February 2019 Intermediate release
  • Loading branch information
erwinvanhunen authored Feb 12, 2019
2 parents 1d485fd + 08ff68d commit b39209f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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/).

## [3.6.1902.1]

### Added

### Changed
- Fixed Set-PnPTenantSite where the NoScriptSite parameter would always be set to false if not specified.

### Contributors


## [3.6.1902.0]

### Added
Expand Down
2 changes: 1 addition & 1 deletion Commands/Admin/SetTenantSite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public class SetTenantSite : PnPAdminCmdlet
public SiteLockState? LockState;

[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)]
public SwitchParameter NoScriptSite;
public SwitchParameter? NoScriptSite;

[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)]
public SharingPermissionType? DefaultLinkPermission;
Expand Down
4 changes: 2 additions & 2 deletions Commands/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.6.1902.0")]
[assembly: AssemblyFileVersion("3.6.1902.0")]
[assembly: AssemblyVersion("3.6.1902.1")]
[assembly: AssemblyFileVersion("3.6.1902.1")]
[assembly: InternalsVisibleTo("SharePointPnP.PowerShell.Tests")]
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.1902.0
3.6.1902.1

0 comments on commit b39209f

Please sign in to comment.