Skip to content

Commit

Permalink
Merge pull request #95 from PowerShell/dev
Browse files Browse the repository at this point in the history
Release of version 4.4.0.0 of DFSDsc
  • Loading branch information
mgreenegit authored Sep 19, 2019
2 parents 9d16431 + 5446d2d commit 872b6c6
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## 4.4.0.0

- Fix example publish to PowerShell Gallery by adding `gallery_api`
environment variable to `AppVeyor.yml` - fixes [Issue #91](https://github.com/PowerShell/DfsDsc/issues/91).
- Fix minor style issues in statement case.

## 4.3.0.0

- Fixes PSSA style violation issues resulting - fixes [Issue #84](https://github.com/PowerShell/DfsDsc/issues/84).
Expand Down
12 changes: 5 additions & 7 deletions DFSDsc.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
# Version number of this module.
moduleVersion = '4.3.0.0'
moduleVersion = '4.4.0.0'

# ID used to uniquely identify this module
GUID = '3bcb9c66-ea0b-4675-bd46-c390a382c388'
Expand Down Expand Up @@ -65,12 +65,9 @@
ProjectUri = 'https://github.com/PowerShell/DFSDsc'

# ReleaseNotes of this module
ReleaseNotes = '- Fixes PSSA style violation issues resulting - fixes [Issue 84](https://github.com/PowerShell/DfsDsc/issues/84).
- Added "DscResourcesToExport" to manifest to improve information in
PowerShell Gallery - fixes [Issue 86](https://github.com/PowerShell/DfsDsc/issues/86).
- Set FunctionsToExport, CmdletsToExport, VariablesToExport, AliasesToExport
to empty list in manifest to meet best practice.
- Explicitly removed extra hidden files from release package
ReleaseNotes = '- Fix example publish to PowerShell Gallery by adding `gallery_api`
environment variable to `AppVeyor.yml` - fixes [Issue 91](https://github.com/PowerShell/DfsDsc/issues/91).
- Fix minor style issues in statement case.
'
} # End of PSData hashtable
Expand All @@ -82,3 +79,4 @@




Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ function Test-TargetResource
.PARAMETER Path
Specifies a path for the root of a DFS namespace.
#>
Function Get-Folder
function Get-Folder
{
param
(
Expand Down Expand Up @@ -668,7 +668,7 @@ Function Get-Folder
.PARAMETER TargetPath
Specifies a path for a root target of the DFS namespace.
#>
Function Get-FolderTarget
function Get-FolderTarget
{
param
(
Expand Down
4 changes: 2 additions & 2 deletions DSCResources/MSFT_DFSNamespaceRoot/MSFT_DFSNamespaceRoot.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ function Test-TargetResource
.PARAMETER Path
Specifies a path for the root of a DFS namespace.
#>
Function Get-Root
function Get-Root
{
param
(
Expand Down Expand Up @@ -815,7 +815,7 @@ Function Get-Root
.PARAMETER TargetPath
Specifies a path for a root target of the DFS namespace.
#>
Function Get-RootTarget
function Get-RootTarget
{
param
(
Expand Down
3 changes: 3 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
# environment configuration #
#---------------------------------#
version: 3.1.{build}.0
environment:
gallery_api:
secure: 9ekJzfsPCDBkyLrfmov83XbbhZ6E2N3z+B/Io8NbDetbHc6hWS19zsDmy7t0Vvxv
install:
- git clone https://github.com/PowerShell/DscResource.Tests

Expand Down

0 comments on commit 872b6c6

Please sign in to comment.