Skip to content

Commit 1298147

Browse files
author
James Brundage
committed
Updating Module Version [0.1.1] and CHANGELOG
1 parent 8247135 commit 1298147

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 0.1.1:
2+
* New Keywords:
3+
* await (Fixes #181)
4+
* New-PipeScript:
5+
* Allowing -Parameter to be supplied via reflection (Fixes #171)
6+
* Adding -ParameterHelp (Fixes #172)
7+
* Adding -WeaklyTyped (Fixes #174)
8+
* Update-PipeScript:
9+
* Adding -RegexReplacement (Fixes #178)
10+
* Adding -RegionReplacement (Fixes #179)
11+
* Use-PipeScript:
12+
* Supporting Get-Command -Syntax (Fixes #177)
13+
* Types/Formatting Fixes:
14+
* CommandAST/AttributeAST: Adding .Args/.Arguments/.Parameters aliases (Fixes #176)
15+
* CommandAST: Fixing .GetParameter (Fixes #175)
16+
* Updating PSToken control (more colorization) (Fixes #166)
17+
* YAML Formatter indent / primitive support (Fixes #180)
18+
---
19+
120
## 0.1:
221
* PipeScript can now Transpile Protocols (Fixes #168)
322
* PipeScript can transpile http[s] protocol (Fixes #169)

PipeScript.psd1

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@{
2-
ModuleVersion = '0.1'
2+
ModuleVersion = '0.1.1'
33
Description = 'An Extensible Transpiler for PowerShell (and anything else)'
44
RootModule = 'PipeScript.psm1'
55
PowerShellVersion = '4.0'
@@ -19,6 +19,25 @@
1919
BuildModule = @('EZOut','Piecemeal','PipeScript','HelpOut', 'PSDevOps')
2020
Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler'
2121
ReleaseNotes = @'
22+
## 0.1.1:
23+
* New Keywords:
24+
* await (Fixes #181)
25+
* New-PipeScript:
26+
* Allowing -Parameter to be supplied via reflection (Fixes #171)
27+
* Adding -ParameterHelp (Fixes #172)
28+
* Adding -WeaklyTyped (Fixes #174)
29+
* Update-PipeScript:
30+
* Adding -RegexReplacement (Fixes #178)
31+
* Adding -RegionReplacement (Fixes #179)
32+
* Use-PipeScript:
33+
* Supporting Get-Command -Syntax (Fixes #177)
34+
* Types/Formatting Fixes:
35+
* CommandAST/AttributeAST: Adding .Args/.Arguments/.Parameters aliases (Fixes #176)
36+
* CommandAST: Fixing .GetParameter (Fixes #175)
37+
* Updating PSToken control (more colorization) (Fixes #166)
38+
* YAML Formatter indent / primitive support (Fixes #180)
39+
---
40+
2241
## 0.1:
2342
* PipeScript can now Transpile Protocols (Fixes #168)
2443
* PipeScript can transpile http[s] protocol (Fixes #169)

0 commit comments

Comments
 (0)