Skip to content

Commit

Permalink
Revert "Bump to 6.0.0-alpha5"
Browse files Browse the repository at this point in the history
This reverts commit 882c358.
nohwnd committed Oct 30, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 882c358 commit b0cfb01
Showing 1 changed file with 51 additions and 51 deletions.
102 changes: 51 additions & 51 deletions src/Pester.psd1
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
RootModule = 'Pester.psm1'

# Version number of this module.
ModuleVersion = '5.6.1'
ModuleVersion = '6.0.0'

# ID used to uniquely identify this module
GUID = 'a699dea5-2c73-4616-a270-1f7abb777e71'
@@ -22,7 +22,7 @@
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 accessible 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.'

# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '3.0'
PowerShellVersion = '5.1'

# Type files (.ps1xml) to be loaded when importing this module
TypesToProcess = @()
@@ -66,13 +66,55 @@
'New-PesterContainer'
'New-PesterConfiguration'

# legacy
'Assert-VerifiableMock'
'Assert-MockCalled'
'Set-ItResult'
# assert
# bool
'Should-BeFalse'
'Should-BeTrue'
'Should-BeFalsy'
'Should-BeTruthy'

# collection
'Should-All'
'Should-Any'
'Should-ContainCollection'
'Should-NotContainCollection'
'Should-BeCollection'
'Should-BeEquivalent'
'Should-Throw'
'Should-Be'
'Should-BeGreaterThan'
'Should-BeGreaterThanOrEqual'
'Should-BeLessThan'
'Should-BeLessThanOrEqual'
'Should-NotBe'
'Should-NotBeNull'
'Should-NotBeSame'
'Should-NotHaveType'
'Should-BeNull'
'Should-BeSame'
'Should-HaveType'

# string
'Should-BeString'
'Should-NotBeString'

'Should-BeEmptyString'

'Should-NotBeWhiteSpaceString'
'Should-NotBeEmptyString'

'Should-BeLikeString'
'Should-NotBeLikeString'

'Should-BeFasterThan'
'Should-BeSlowerThan'
'Should-BeBefore'
'Should-BeAfter'

# helpers
'New-MockObject'

'New-Fixture'
'Set-ItResult'
)

# # Cmdlets to export from this module
@@ -116,52 +158,10 @@
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/5.6.1'

# Prerelease string of this module
Prerelease = ''
}

# Minimum assembly version required
RequiredAssemblyVersion = '5.6.1'
}

# HelpInfo URI of this module
# HelpInfoURI = ''

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''

} } } }
# List of all files packaged with this module
# FileList = @()

PrivateData = @{
# PSData is module packaging and gallery metadata embedded in PrivateData
# It's for rebuilding PowerShellGet (and PoshCode) NuGet-style packages
# We had to do this because it's the only place we're allowed to extend the manifest
# https://connect.microsoft.com/PowerShell/feedback/details/421837
PSData = @{
# The primary categorization of this module (from the TechNet Gallery tech tree).
Category = "Scripting Techniques"

# Keyword tags to help users find this module via navigations and search.
Tags = @('powershell', 'unit_testing', 'bdd', 'tdd', 'mocking', 'PSEdition_Core', 'PSEdition_Desktop', 'Windows', 'Linux', 'MacOS')

# The web address of an icon which can be used in galleries to represent this module
IconUri = 'https://raw.githubusercontent.com/pester/Pester/main/images/pester.PNG'

# The web address of this module's project or support homepage.
ProjectUri = "https://github.com/Pester/Pester"

# The web address of this module's license. Points to a page that's embeddable and linkable.
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/6.0.0-alpha5'
ReleaseNotes = 'https://github.com/pester/Pester/releases/tag/6.0.0-alpha4'

# Prerelease string of this module
Prerelease = 'alpha5'
Prerelease = 'alpha4'
}

# Minimum assembly version required

0 comments on commit b0cfb01

Please sign in to comment.