Skip to content

Commit

Permalink
fix deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
nohwnd committed Feb 20, 2018
1 parent 6a44707 commit 7aa9e63
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 4.3.1 (February 20, 2018)
- Fix missing dependencies in packages

## 4.3.0 (February 20, 2018)
- Add tests for help [GH-997]
- Update output in assertions [GH-996]
Expand Down
1 change: 1 addition & 0 deletions Pester.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<file src="nunit_schema_2.5.xsd" target="$targetBase$" />
<file src="bin\*.*" target="$targetBase$\bin" />
<file src="Functions\**\*.*" target="$targetBase$\Functions" />
<file src="Dependencies\**\*.*" target="$targetBase$\Dependencies" />
<file src="Snippets\*.*" target="$targetBase$\Snippets" />
<file src="en-US\*.*" target="$targetBase$\en-US" />
<file src="lib\**\*.*" target="$targetBase$\lib" />
Expand Down
4 changes: 2 additions & 2 deletions Pester.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ModuleToProcess = 'Pester.psm1'

# Version number of this module.
ModuleVersion = '4.3.0'
ModuleVersion = '4.3.1'

# ID used to uniquely identify this module
GUID = 'a699dea5-2c73-4616-a270-1f7abb777e71'
Expand Down Expand Up @@ -122,7 +122,7 @@ PrivateData = @{
LicenseUri = "https://www.apache.org/licenses/LICENSE-2.0.html"

# Release notes for this particular version of the module
ReleaseNotes = 'https://github.com/pester/Pester/releases/tag/4.3.0'
ReleaseNotes = 'https://github.com/pester/Pester/releases/tag/4.3.1'

# Prerelease string of this module
Prerelease = ''
Expand Down
1 change: 1 addition & 0 deletions buildPSGalleryPackage.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ try
Copy-Item $baseDir\nunit_schema_2.5.xsd $buildDir\
Copy-Item $baseDir\bin $buildDir\ -Recurse -Exclude *.tests.ps1
Copy-Item $baseDir\Functions $buildDir\ -Recurse -Exclude *.tests.ps1
Copy-Item $baseDir\Dependencies $buildDir\ -Recurse -Exclude *.tests.ps1
Copy-Item $baseDir\Snippets $buildDir\ -Recurse -Exclude *.tests.ps1
Copy-Item $baseDir\en-US $buildDir\ -Recurse -Exclude *.tests.ps1
Copy-Item $baseDir\lib $buildDir\ -Recurse -Exclude *.tests.ps1
Expand Down

0 comments on commit 7aa9e63

Please sign in to comment.