Skip to content

Commit f8c3652

Browse files
release: Vector 0.1
Adding CHANGELOG and updating manifest
1 parent f8a2d1b commit f8c3652

File tree

2 files changed

+40
-9
lines changed

2 files changed

+40
-9
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## Vector 0.1:
2+
3+
* Initial Release of Vector module
4+
* Commands:
5+
* Get-Vector (#1)
6+
* Get-Vector2 (#2)
7+
* Get-Vector3 (#3)
8+
* Get-Vector4 (#4)
9+
* Vector Workflow (#5)
10+
* Vector Tests (#6)
11+
* Vector Docs
12+
* Demo (#7)
13+
* README (#8)
14+
* FUNDING (#9)
15+
* CODE_OF_CONDUCT (#10)
16+
* CONTRIBUTING (#11)
17+
* SECURITY (#12)

Vector.psd1

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#
22
# Module manifest for module 'Vector'
33
#
4-
# Generated by: PowerPi
5-
#
64
# Generated on: 10/4/2025
75
#
86

@@ -95,19 +93,35 @@ PrivateData = @{
9593
PSData = @{
9694

9795
# Tags applied to this module. These help with module discovery in online galleries.
98-
# Tags = @()
99-
100-
# A URL to the license for this module.
101-
# LicenseUri = ''
102-
96+
Tags = 'PowerShell', 'Vector', 'Math', 'VectorMath'
10397
# A URL to the main website for this project.
104-
# ProjectUri = ''
98+
ProjectURI = 'https://github.com/PowerShellWeb/Vector'
99+
# A URL to the license for this module.
100+
LicenseURI = 'https://github.com/PowerShellWeb/Vector/blob/main/LICENSE'
105101

106102
# A URL to an icon representing this module.
107103
# IconUri = ''
108104

109105
# ReleaseNotes of this module
110-
# ReleaseNotes = ''
106+
ReleaseNotes = @'
107+
## Vector 0.1:
108+
109+
* Initial Release of Vector module
110+
* Commands:
111+
* Get-Vector (#1)
112+
* Get-Vector2 (#2)
113+
* Get-Vector3 (#3)
114+
* Get-Vector4 (#4)
115+
* Vector Workflow (#5)
116+
* Vector Tests (#6)
117+
* Vector Docs
118+
* Demo (#7)
119+
* README (#8)
120+
* FUNDING (#9)
121+
* CODE_OF_CONDUCT (#10)
122+
* CONTRIBUTING (#11)
123+
* SECURITY (#12)
124+
'@
111125

112126
# Prerelease string of this module
113127
# Prerelease = ''

0 commit comments

Comments
 (0)