Skip to content

Commit 48b79ed

Browse files
author
James Brundage
committed
Updating Module Version [0.2.2] and CHANGELOG
1 parent 061423f commit 48b79ed

File tree

2 files changed

+35
-7
lines changed

2 files changed

+35
-7
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## PipeScript 0.2.2:
2+
3+
* Build-PipeScript is now Export-PipeScript (aliases remain) (Fixes #312)
4+
* Export-PipeScript: Running BuildScripts first (Fixes #316)
5+
* Join-PipeScript
6+
* Ensuring end blocks remain unnamed if they can be (Fixes #317)
7+
* Trmming empty param blocks from end (Fixes #302)
8+
* Update-PipeScript:
9+
* Adding -InsertBefore/After (Fixes #309). Improving aliasing (Fixes #310)
10+
* Aliasing RenameVariable to RenameParameter (Fixes #303). Improving inner docs
11+
* requires transpiler: Caching Find-Module results (Fixes #318)
12+
* Extending Types:
13+
* Adding PipeScript.Template (Fixes #315)
14+
* Adding 'ExtensionScript' to PipeScript.PipeScriptType (Fixes #313)
15+
* Greatly extending ParameterAst (Fixes #305)
16+
* Extending ParamBlockAst (Fixes #304)
17+
18+
---
19+
120
## 0.2.1:
221

322
* Adding preliminary 'define' transpiler (Fixes #299)

PipeScript.ps.psd1

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@{
2-
ModuleVersion = '0.2.1'
2+
ModuleVersion = '0.2.2'
33
Description = 'An Extensible Transpiler for PowerShell (and anything else)'
44
RootModule = 'PipeScript.psm1'
55
PowerShellVersion = '4.0'
@@ -43,13 +43,22 @@ PipeScript files.
4343
BuildModule = @('EZOut','Piecemeal','PipeScript','HelpOut', 'PSDevOps')
4444
Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler'
4545
ReleaseNotes = @'
46-
## 0.2.1:
46+
## PipeScript 0.2.2:
4747
48-
* Adding preliminary 'define' transpiler (Fixes #299)
49-
* Improving interactive templates (now supported for all languages) (Fixes #285)
50-
* Fixing sequence dotting within non-statements (Fixes #298)
51-
* Allow multiple transpiler outputs to update nearby context (Fixes #297)
52-
* No longer expanding Regex Literals in attributes (Fixes #290)
48+
* Build-PipeScript is now Export-PipeScript (aliases remain) (Fixes #312)
49+
* Export-PipeScript: Running BuildScripts first (Fixes #316)
50+
* Join-PipeScript
51+
* Ensuring end blocks remain unnamed if they can be (Fixes #317)
52+
* Trmming empty param blocks from end (Fixes #302)
53+
* Update-PipeScript:
54+
* Adding -InsertBefore/After (Fixes #309). Improving aliasing (Fixes #310)
55+
* Aliasing RenameVariable to RenameParameter (Fixes #303). Improving inner docs
56+
* requires transpiler: Caching Find-Module results (Fixes #318)
57+
* Extending Types:
58+
* Adding PipeScript.Template (Fixes #315)
59+
* Adding 'ExtensionScript' to PipeScript.PipeScriptType (Fixes #313)
60+
* Greatly extending ParameterAst (Fixes #305)
61+
* Extending ParamBlockAst (Fixes #304)
5362
5463
---
5564

0 commit comments

Comments
 (0)