Skip to content

Commit edf31cf

Browse files
author
James Brundage
committed
Updating Module Version [0.1.9] and CHANGELOG
1 parent ef20aa0 commit edf31cf

File tree

2 files changed

+27
-9
lines changed

2 files changed

+27
-9
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.1.9:
2+
* Protocol Transpilers
3+
* Adding JSONSchema transpiler (Fixes #274)
4+
* HTTP Protocol: Only allowing HTTP Methods (Fixes #275)
5+
* Keyword improvements:
6+
* all scripts in $directory (Fixes #277)
7+
* 'new' keyword recursively transpiles constructor arguments (Fixes #271)
8+
* Core improvements:
9+
* Core Transpiler stops transpilation of an item after any output (Fixes #280)
10+
* [CommandAst].AsSentence now maps singleton values correctly (Fixes #279)
11+
* PipeScript now handles CommandNotFound, enabling interactive use (Fixes #281)
12+
13+
---
14+
115
## 0.1.8:
216
* Improvements to 'all' keyword (#264 #263 #260 #253)
317
* Keywords can now be run interactively (#263)

PipeScript.psd1

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@{
2-
ModuleVersion = '0.1.8'
2+
ModuleVersion = '0.1.9'
33
Description = 'An Extensible Transpiler for PowerShell (and anything else)'
44
RootModule = 'PipeScript.psm1'
55
PowerShellVersion = '4.0'
@@ -19,14 +19,18 @@
1919
BuildModule = @('EZOut','Piecemeal','PipeScript','HelpOut', 'PSDevOps')
2020
Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler'
2121
ReleaseNotes = @'
22-
## 0.1.8:
23-
* Improvements to 'all' keyword (#264 #263 #260 #253)
24-
* Keywords can now be run interactively (#263)
25-
* New keyword can be piped to (#265)
26-
* Sentences can now map multi-word aliases (#260)
27-
* New [CommandAST] properties: .IsPipedTo .IsPipedFrom
28-
* Added Inline HAXE and Inline Racket support (#259 #262)
29-
22+
## 0.1.9:
23+
* Protocol Transpilers
24+
* Adding JSONSchema transpiler (Fixes #274)
25+
* HTTP Protocol: Only allowing HTTP Methods (Fixes #275)
26+
* Keyword improvements:
27+
* all scripts in $directory (Fixes #277)
28+
* 'new' keyword recursively transpiles constructor arguments (Fixes #271)
29+
* Core improvements:
30+
* Core Transpiler stops transpilation of an item after any output (Fixes #280)
31+
* [CommandAst].AsSentence now maps singleton values correctly (Fixes #279)
32+
* PipeScript now handles CommandNotFound, enabling interactive use (Fixes #281)
33+
3034
Additional history in [CHANGELOG](https://pipescript.start-automating.com/CHANGELOG)
3135
'@
3236
}

0 commit comments

Comments
 (0)