diff --git a/CHANGELOG.md b/CHANGELOG.md index bec4e47ec..f918bc7ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## 3.3.9 (May 23, 2015) - Fixed Describe's handling of TestName filter when multiple strings are passed to Invoke-Pester's -TestName parameter. - Failing BeforeEach or AfterEach will fail the test [GH-326] - Added BeOfType operator to the Should command. [GH-327] diff --git a/Pester.psd1 b/Pester.psd1 index adc6e9b99..d18929d28 100644 --- a/Pester.psd1 +++ b/Pester.psd1 @@ -4,7 +4,7 @@ ModuleToProcess = 'Pester.psm1' # Version number of this module. -ModuleVersion = '3.3.8' +ModuleVersion = '3.3.9' # ID used to uniquely identify this module GUID = 'a699dea5-2c73-4616-a270-1f7abb777e71' @@ -16,7 +16,7 @@ Author = 'Pester Team' CompanyName = 'Pester' # Copyright statement for this module -Copyright = 'Copyright (c) 2014 by Pester Team, licensed under Apache 2.0 License.' +Copyright = 'Copyright (c) 2015 by Pester Team, licensed under Apache 2.0 License.' # Description of the functionality provided by this module Description = 'Pester provides a framework for running BDD style Tests to execute and validate PowerShell commands inside of PowerShell and offers a powerful set of Mocking Functions that allow tests to mimic and mock the functionality of any command inside of a piece of powershell code being tested. Pester tests can execute any command or script that is accesible to a pester test file. This can include functions, Cmdlets, Modules and scripts. Pester can be run in ad hoc style in a console or it can be integrated into the Build scripts of a Continuous Integration system.'