Skip to content

Commit

Permalink
docs: cleanup manifest and inter-tool links
Browse files Browse the repository at this point in the history
  • Loading branch information
ArwynFr committed May 29, 2023
1 parent fa8f835 commit a9d5de2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/README.adoc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
= StepSemVer

StepSemVer is a small powershell module that adds a command to increment semantic version numbers.
StepSemVer is a pwsh module used to increment semantic versions number.

image:https://img.shields.io/powershellgallery/v/StepSemVer?style=for-the-badge[PowerShell Gallery] image:https://img.shields.io/powershellgallery/dt/StepSemVer?style=for-the-badge[PowerShell Gallery]
https://www.powershellgallery.com/packages/StepSemVer[image:https://img.shields.io/powershellgallery/v/StepSemVer?style=for-the-badge[PowerShell Gallery]] https://www.powershellgallery.com/packages/StepSemVer[image:https://img.shields.io/powershellgallery/dt/StepSemVer?style=for-the-badge[PowerShell Gallery]]

== Rules and standards

Expand Down
21 changes: 13 additions & 8 deletions StepSemVer/StepSemVer.psd1
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
@{
Author = 'Arwyn'
CompanyName = 'www.gsri.team'
Copyright = '(c) 2019 - GSRI - MIT license'
Author = 'Arwyn'
CompanyName = 'www.gsri.team'
Copyright = '(c) 2019-2023 - ArwynFr - MIT license'

GUID = 'b4209e98-7072-45f3-bb89-ce520a182558'
Description = 'A powerhsell module dedicated to incrementing SemVer versions'
ModuleVersion = '0.1.0'
HelpInfoURI = 'https://www.gsri.team'
ModuleVersion = '0.1.0'
GUID = 'b4209e98-7072-45f3-bb89-ce520a182558'
Description = 'StepSemVer pwsh module used to increment semantic versions number.'
HelpInfoURI = 'https://github.com/ArwynFr/StepSemVer#readme'

PrivateData = @{
ProjectUri = 'https://github.com/ArwynFr/StepSemVer'
LicenseUri = 'https://github.com/ArwynFr/StepSemVer/blob/main/LICENSE'
}

RootModule = 'StepSemVer.psm1'
RootModule = 'StepSemVer.psm1'
FunctionsToExport = @(
'Step-SemVer'
)
Expand Down

0 comments on commit a9d5de2

Please sign in to comment.