-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Splatter.psd1
47 lines (40 loc) · 1.38 KB
/
Splatter.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@{
CompanyName = 'Start-Automating'
Copyright = '2019-2023 Start-Automating'
RootModule = 'Splatter.psm1'
Description = 'Simple Scripts to Supercharge Splatting'
ModuleVersion = '0.5.5'
AliasesToExport = '*'
VariablesToExport = '*'
GUID = '033f35ed-f8a7-4911-bb62-2691f505ed43'
Author = 'James Brundage'
PrivateData = @{
PSData = @{
ProjectURI = 'https://github.com/StartAutomating/Splatter'
LicenseURI = 'https://github.com/StartAutomating/Splatter/blob/master/LICENSE'
IconURI = 'https://raw.githubusercontent.com/StartAutomating/Splatter/master/Assets/Splatter.png'
Tags = 'Splatting', 'PipeScript'
ReleaseNotes = @'
### 0.5.5:
* Splatter is now a GitHub Action! (#18)
* Initialize-Splatter now returns a `[ScriptBlock]` (#21)
* Initialize-Splatter/Out-Splat now have -OutputPath (#19/#20)
* Added Sponsorship (#22)
---
### 0.5.4:
* New Splatter Logo (#12)
* All splats will become PSObjects consistently (#13)
* Generated Documentation (#14)
* Declaring aliases inline (#16)
---
### 0.5.3:
* Out-Splat now supports -Examples, -Links, -Notes, and -OutputTypes (Issue #9)
* Adding logo
* Documentation updates.
### 0.5.2:
* Improved pipeline support (Fixes #6)
* Out-Splat -CrossStream will now output all streams in generated commands, not just error and output.
'@
}
}
}