Skip to content

Commit 05f0d84

Browse files
author
James Brundage
committed
Updating Module Version [0.0.12] and CHANGELOG
1 parent c386fd1 commit 05f0d84

File tree

2 files changed

+27
-7
lines changed

2 files changed

+27
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 0.0.12:
2+
* Adding assert keyword (#143)
3+
* Fixing new keyword for blank constructors (#142 )
4+
* Rest Transpiler:
5+
* Handling multiple QueryString values (#139)
6+
* Only passing ContentType to invoker if invoker supports it (#141)
7+
* Defaulting to JSON body when ContentType is unspecified (#140)
8+
---
9+
110
## 0.0.11:
211
* Source Generators Now Support Parameters / Arguments (#75)
312
* Invoke-PipeScript Terminating Build Errors (#135)

PipeScript.psd1

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,33 @@
11
@{
2-
ModuleVersion = '0.0.11'
2+
ModuleVersion = '0.0.12'
33
Description = 'An Extensible Transpiler for PowerShell (and anything else)'
44
RootModule = 'PipeScript.psm1'
55
PowerShellVersion = '4.0'
66
AliasesToExport = '*'
77
FormatsToProcess = 'PipeScript.format.ps1xml'
88
TypesToProcess = 'PipeScript.types.ps1xml'
9-
Guid = 'fc054786-b1ce-4ed8-a90f-7cc9c27edb06'
10-
CompanyName='Start-Automating'
11-
Copyright='2022 Start-Automating'
12-
Author='James Brundage'
9+
Guid = 'fc054786-b1ce-4ed8-a90f-7cc9c27edb06'
10+
CompanyName = 'Start-Automating'
11+
Copyright = '2022 Start-Automating'
12+
Author = 'James Brundage'
1313
PrivateData = @{
1414
PSData = @{
1515
ProjectURI = 'https://github.com/StartAutomating/PipeScript'
1616
LicenseURI = 'https://github.com/StartAutomating/PipeScript/blob/main/LICENSE'
17-
18-
Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler'
17+
RecommendModule = @('PSMinifier')
18+
RelatedModule = @()
19+
BuildModule = @('EZOut','Piecemeal','PipeScript','HelpOut', 'PSDevOps')
20+
Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler'
1921
ReleaseNotes = @'
22+
## 0.0.12:
23+
* Adding assert keyword (#143)
24+
* Fixing new keyword for blank constructors (#142 )
25+
* Rest Transpiler:
26+
* Handling multiple QueryString values (#139)
27+
* Only passing ContentType to invoker if invoker supports it (#141)
28+
* Defaulting to JSON body when ContentType is unspecified (#140)
29+
---
30+
2031
## 0.0.11:
2132
* Source Generators Now Support Parameters / Arguments (#75)
2233
* Invoke-PipeScript Terminating Build Errors (#135)

0 commit comments

Comments
 (0)