Skip to content

Commit 9201d28

Browse files
author
James Brundage
committed
Updating Module Version [0.2.5] and CHANGELOG
1 parent c3534dd commit 9201d28

File tree

2 files changed

+45
-22
lines changed

2 files changed

+45
-22
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## PipeScript 0.2.5:
2+
3+
* Added Support for Aspects (#401)
4+
* Support for Pre/Post commands in Core Transpiler
5+
* Commands Named PipeScript.PreProcess / PipeScript.Analyzer will run before transpilation of a ScriptBlock
6+
* Commands Named PipeScript.PostProcess / PipeScript.Optimizer will run after transpilation of a ScriptBlock
7+
* Adding PipeScript.Optimizer.ConsolidateAspects (Fixes #413)
8+
* Conditional Keywords Fixes (Fixes #402)
9+
* New-PipeScript: Improving Pipelining (Fixes #400)
10+
* Update-PipeScript:
11+
* Tracing Events (#407)
12+
* Support for Insertions (#405, #406, #407)
13+
* Template Improvements
14+
* Templates can now be either singleline or multiline (Fixes #398)
15+
* New Language Support
16+
* Eiffel (#404)
17+
* PS1XML (#414)
18+
* SVG (#411)
19+
* XAML (#414)
20+
* XML Transpilers support inline xml output (Fixes #412)
21+
* Added initial demo file (Fixes #420)
22+
23+
---
24+
125
## PipeScript 0.2.4:
226

327
* Conditional Keywords now support throw/return (#389/#388) (also, fixed #387)

PipeScript.ps.psd1

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@{
2-
ModuleVersion = '0.2.4'
2+
ModuleVersion = '0.2.5'
33
Description = 'An Extensible Transpiler for PowerShell (and anything else)'
44
RootModule = 'PipeScript.psm1'
55
PowerShellVersion = '4.0'
@@ -51,28 +51,27 @@ PipeScript files.
5151
BuildModule = @('EZOut','Piecemeal','PipeScript','HelpOut', 'PSDevOps')
5252
Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler'
5353
ReleaseNotes = @'
54-
## PipeScript 0.2.4:
54+
## PipeScript 0.2.5:
5555
56-
* Conditional Keywords now support throw/return (#389/#388) (also, fixed #387)
57-
* Updating action: checking for _all_ build errors before outputting (#378)
58-
* Command Updates
59-
* New-PipeScript: Fixing Typed function creation (Fixes #372)
60-
* Join-PipeScript: Fixing End Block Behavior (Fixes #383)
61-
* Templating Improvements:
62-
* New Languages Supported:
63-
* DART (#394)
64-
* SCALA (#395)
65-
* Markdown Template Transpiler now has a more terse format (#393).
66-
* Markdown Template Transpiler now supports embedding in HTML comments or CSS/JavaScript comments (#113).
67-
* JSON/JavaScript Template: Converting Output to JSON if not [string] (#382)
68-
* CSS Template Template : now Outputting Objects as CSS rules (Fixes #332)
69-
* Core Template Transpiler is Faster (#392) and ForeachObject is improved (#390)
70-
* Other Improvements
71-
* Include transpiler: Adding -Passthru (Fixes #385)
72-
* Making validation for various transpilers more careful (Fixes #381)
73-
* CommandNotFound behavior: Limiting recursion (Fixes #380)
74-
* Core Transpiler: Improving Efficiency (Fixes #379)
75-
* Requires allows clobbering and forces loads (Fixes #386)
56+
* Added Support for Aspects (#401)
57+
* Support for Pre/Post commands in Core Transpiler
58+
* Commands Named PipeScript.PreProcess / PipeScript.Analyzer will run before transpilation of a ScriptBlock
59+
* Commands Named PipeScript.PostProcess / PipeScript.Optimizer will run after transpilation of a ScriptBlock
60+
* Adding PipeScript.Optimizer.ConsolidateAspects (Fixes #413)
61+
* Conditional Keywords Fixes (Fixes #402)
62+
* New-PipeScript: Improving Pipelining (Fixes #400)
63+
* Update-PipeScript:
64+
* Tracing Events (#407)
65+
* Support for Insertions (#405, #406, #407)
66+
* Template Improvements
67+
* Templates can now be either singleline or multiline (Fixes #398)
68+
* New Language Support
69+
* Eiffel (#404)
70+
* PS1XML (#414)
71+
* SVG (#411)
72+
* XAML (#414)
73+
* XML Transpilers support inline xml output (Fixes #412)
74+
* Added initial demo file (Fixes #420)
7675
7776
---
7877

0 commit comments

Comments
 (0)