Skip to content

Commit abd26d9

Browse files
🩹 [Patch]: Add PSSemVer module (#13)
## Description - Add PSSemVer as a prereq, as it is moved from `Utilities` to `PSSemVer` module. ## Type of change <!-- Use the check-boxes [x] on the options that are relevant. --> - [ ] 📖 [Docs] - [ ] 🪲 [Fix] - [x] 🩹 [Patch] - [ ] ⚠️ [Security fix] - [ ] 🚀 [Feature] - [ ] 🌟 [Breaking change] ## Checklist <!-- Use the check-boxes [x] on the options that are relevant. --> - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas
1 parent 27cdd60 commit abd26d9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ The Initialize-PSModule action will prepare the runner for the PSModule framewor
2222

2323
| Module | Description |
2424
| --- | --- |
25-
| Utilities | Used by all actions, contains common function and classes such as logging, grouping and the [PSSemVer] class. |
25+
| Utilities | Used by all actions, contains common function and classes such as logging and grouping. |
26+
| PSSemVer | Used to create an object for the semantic version numbers. Has functionality to compare, and bump versions. |
2627
| powershell-yaml | Used to parse and serialize YAML files, typically for reading configuration files. |
2728
| Pester | Used for testing PowerShell code. |
2829
| PSScriptAnalyzer | Used to lint and format PowerShell code. |

scripts/main.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[CmdletBinding()]
44
param()
55

6-
Install-PSResource -Name 'powershell-yaml', 'Pester', 'PSScriptAnalyzer', 'platyPS' -TrustRepository -Verbose
6+
Install-PSResource -Name 'powershell-yaml', 'PSSemVer', 'Pester', 'PSScriptAnalyzer', 'platyPS' -TrustRepository -Verbose
77
Stop-LogGroup
88

99
Start-LogGroup 'Loading helper scripts'

0 commit comments

Comments
 (0)