Skip to content

Commit ffc33e7

Browse files
author
James Brundage
committed
Updating Module Version [0.1.2] and CHANGELOG
1 parent aed83bf commit ffc33e7

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 0.1.2:
2+
* New Inline Language support
3+
* Batch support (Fixes #198)
4+
* Bash Support (Fixes #194)
5+
* Core Inline Transpiler : Adding -LinePattern (fixes #197)
6+
* New-PipeScript: Writing help (Fixes #195) and functions (fixes #196)
7+
* AST Type Improvements:
8+
* Adding [AST].Transpile() (Fixes #192)
9+
* Considering a pipeline in a hashtable to be assigned (Fixes #193)
10+
* [ScriptBlock]/[AST]: Adding .Transpilers (Fixes #185)
11+
* [CommandAst].ResolvedCommand: Checking transpilers first (Fixes #186)
12+
* Improvements:
13+
* new keyword property bag improvements (Fixes #191)
14+
* Use-PipeScript: Defaulting to core transpiler (Fixes #188)
15+
* Core Transpiler: Allowing -ScriptBlock to be provided postionally (Fixes #189)
16+
* Adding Hashtable formatter (Fixes #187)
17+
* HTTP Protocol: Enabling Splatting (Fixes #183)
18+
* Requiring Inline Transpilers accept [Management.Automation.CommandInfo] from the Pipeline (Fixes #184)
19+
---
20+
121
## 0.1.1:
222
* New Keywords:
323
* await (Fixes #181)

PipeScript.psd1

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@{
2-
ModuleVersion = '0.1.1'
2+
ModuleVersion = '0.1.2'
33
Description = 'An Extensible Transpiler for PowerShell (and anything else)'
44
RootModule = 'PipeScript.psm1'
55
PowerShellVersion = '4.0'
@@ -19,6 +19,26 @@
1919
BuildModule = @('EZOut','Piecemeal','PipeScript','HelpOut', 'PSDevOps')
2020
Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler'
2121
ReleaseNotes = @'
22+
## 0.1.2:
23+
* New Inline Language support
24+
* Batch support (Fixes #198)
25+
* Bash Support (Fixes #194)
26+
* Core Inline Transpiler : Adding -LinePattern (fixes #197)
27+
* New-PipeScript: Writing help (Fixes #195) and functions (fixes #196)
28+
* AST Type Improvements:
29+
* Adding [AST].Transpile() (Fixes #192)
30+
* Considering a pipeline in a hashtable to be assigned (Fixes #193)
31+
* [ScriptBlock]/[AST]: Adding .Transpilers (Fixes #185)
32+
* [CommandAst].ResolvedCommand: Checking transpilers first (Fixes #186)
33+
* Improvements:
34+
* new keyword property bag improvements (Fixes #191)
35+
* Use-PipeScript: Defaulting to core transpiler (Fixes #188)
36+
* Core Transpiler: Allowing -ScriptBlock to be provided postionally (Fixes #189)
37+
* Adding Hashtable formatter (Fixes #187)
38+
* HTTP Protocol: Enabling Splatting (Fixes #183)
39+
* Requiring Inline Transpilers accept [Management.Automation.CommandInfo] from the Pipeline (Fixes #184)
40+
---
41+
2242
## 0.1.1:
2343
* New Keywords:
2444
* await (Fixes #181)

0 commit comments

Comments
 (0)