Skip to content

Commit 3963c32

Browse files
author
James Brundage
committed
Updating Module Version [0.2] and CHANGELOG (Fixes #294)
1 parent 4d88c17 commit 3963c32

File tree

2 files changed

+64
-0
lines changed

2 files changed

+64
-0
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 0.2:
2+
3+
* Massive Improvements in Templating
4+
* Templates can be used interactively (Fixes #285)
5+
* Renaming all Inline Transpilers to Template Transpilers
6+
* Natural Parsing Improvements
7+
* ArrayLiterals are expanded (Fixes #291)
8+
* AsSentence now only allows one value into a singleton (Fixes #279)
9+
* Not expanding expandable strings (Fixes #286)
10+
* Transpilers can change nearby context (Fixes #292)
11+
* Allowing dot syntax to extend across multiple statements (Fixes #273)
12+
* Adding requires keyword (Fixes #293)
13+
* PipeScript modifies its own manifest (Fixes #294)
14+
15+
---
16+
117
## 0.1.9:
218
* Protocol Transpilers
319
* Adding JSONSchema transpiler (Fixes #274)

PipeScript.ps.psd1

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
@{
2+
ModuleVersion = '0.2'
3+
Description = 'An Extensible Transpiler for PowerShell (and anything else)'
4+
RootModule = 'PipeScript.psm1'
5+
PowerShellVersion = '4.0'
6+
AliasesToExport = '*'
7+
FormatsToProcess = 'PipeScript.format.ps1xml'
8+
TypesToProcess = 'PipeScript.types.ps1xml'
9+
Guid = 'fc054786-b1ce-4ed8-a90f-7cc9c27edb06'
10+
CompanyName = 'Start-Automating'
11+
Copyright = '2022 Start-Automating'
12+
Author = 'James Brundage'
13+
FunctionsToExport = '' <#{
14+
$exportNames = Get-ChildItem -Recurse -Filter '*-*.ps1' |
15+
Where-Object Name -notmatch '\.ps1{0,1}\.ps1' |
16+
Foreach-Object { $_.Name.Substring(0, $_.Name.Length - $_.Extension.Length) }
17+
"'$($exportNames -join "','")'"
18+
}#>
19+
PrivateData = @{
20+
PSData = @{
21+
ProjectURI = 'https://github.com/StartAutomating/PipeScript'
22+
LicenseURI = 'https://github.com/StartAutomating/PipeScript/blob/main/LICENSE'
23+
RecommendModule = @('PSMinifier')
24+
RelatedModule = @()
25+
BuildModule = @('EZOut','Piecemeal','PipeScript','HelpOut', 'PSDevOps')
26+
Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler'
27+
ReleaseNotes = @'
28+
## 0.2:
29+
30+
* Massive Improvements in Templating
31+
* Templates can be used interactively (Fixes #285)
32+
* Renaming all Inline Transpilers to Template Transpilers
33+
* Natural Parsing Improvements
34+
* ArrayLiterals are expanded (Fixes #291)
35+
* AsSentence now only allows one value into a singleton (Fixes #279)
36+
* Not expanding expandable strings (Fixes #286)
37+
* Transpilers can change nearby context (Fixes #292)
38+
* Allowing dot syntax to extend across multiple statements (Fixes #273)
39+
* Adding requires keyword (Fixes #293)
40+
* PipeScript modifies its own manifest (Fixes #294)
41+
42+
---
43+
44+
Additional history in [CHANGELOG](https://pipescript.start-automating.com/CHANGELOG)
45+
'@
46+
}
47+
}
48+
}

0 commit comments

Comments
 (0)