Skip to content

Commit 649392b

Browse files
release: Gradient 0.1 ( Fixes #1 )
Adding CHANGELOG, Release Notes, and Tags
1 parent 7791d13 commit 649392b

File tree

2 files changed

+45
-2
lines changed

2 files changed

+45
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## Gradient 0.1:
2+
3+
> Initial Gradient Module (#1)
4+
5+
* `Get-Gradient` (aka `Gradient`) gets gradients (#3)
6+
* It returns `Gradient` objects, using the `.Input`
7+
* Have a `.CSS` property (#4)
8+
* Hava a `.SVG` property (#5)
9+
* Have a `.GradientTypePattern` (#15)
10+
* Can get a `.GradientType` (#16) (defaulting to `radial-gradient`)
11+
* Will `.ToString()` to `.CSS` (#17)
12+
* Displays Input and CSS by default (#18)
13+
* Basic Module Scaffolding
14+
* GitHub Workflow (#2)
15+
* GitHub Action (#7)
16+
* Tests (#8)
17+
* Sponsorship (#14)
18+
* Code of Conduct (#9)
19+
* Contributing Guide (#10)
20+
* Security notice (#11)
21+
* Also, initial examples are in `/Examples` (#13)
22+

Gradient.psd1

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ PrivateData = @{
9696
PSData = @{
9797

9898
# Tags applied to this module. These help with module discovery in online galleries.
99-
# Tags = @()
99+
Tags = @('Gradient','CSS','SVG', 'GradientGenerator')
100100

101101
# A URL to the license for this module.
102102
LicenseUri = 'https://github.com/PowerShellWeb/Gradient/blob/main/LICENSE'
@@ -109,7 +109,28 @@ PrivateData = @{
109109

110110
# ReleaseNotes of this module
111111
ReleaseNotes = @'
112-
## Gradient 0.1
112+
## Gradient 0.1:
113+
114+
> Initial Gradient Module (#1)
115+
116+
* `Get-Gradient` (aka `Gradient`) gets gradients (#3)
117+
* It returns `Gradient` objects, using the `.Input`
118+
* Have a `.CSS` property (#4)
119+
* Hava a `.SVG` property (#5)
120+
* Have a `.GradientTypePattern` (#15)
121+
* Can get a `.GradientType` (#16) (defaulting to `radial-gradient`)
122+
* Will `.ToString()` to `.CSS` (#17)
123+
* Displays Input and CSS by default (#18)
124+
* Basic Module Scaffolding
125+
* GitHub Workflow (#2)
126+
* GitHub Action (#7)
127+
* Tests (#8)
128+
* Sponsorship (#14)
129+
* Code of Conduct (#9)
130+
* Contributing Guide (#10)
131+
* Security notice (#11)
132+
* Also, initial examples are in `/Examples` (#13)
133+
113134
'@
114135

115136
# Prerelease string of this module

0 commit comments

Comments
 (0)