|
1 | 1 | @{ |
2 | | - ModuleVersion = '0.0.11' |
| 2 | + ModuleVersion = '0.0.12' |
3 | 3 | Description = 'An Extensible Transpiler for PowerShell (and anything else)' |
4 | 4 | RootModule = 'PipeScript.psm1' |
5 | 5 | PowerShellVersion = '4.0' |
6 | 6 | AliasesToExport = '*' |
7 | 7 | FormatsToProcess = 'PipeScript.format.ps1xml' |
8 | 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' |
| 9 | + Guid = 'fc054786-b1ce-4ed8-a90f-7cc9c27edb06' |
| 10 | + CompanyName = 'Start-Automating' |
| 11 | + Copyright = '2022 Start-Automating' |
| 12 | + Author = 'James Brundage' |
13 | 13 | PrivateData = @{ |
14 | 14 | PSData = @{ |
15 | 15 | ProjectURI = 'https://github.com/StartAutomating/PipeScript' |
16 | 16 | LicenseURI = 'https://github.com/StartAutomating/PipeScript/blob/main/LICENSE' |
17 | | - |
18 | | - Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler' |
| 17 | + RecommendModule = @('PSMinifier') |
| 18 | + RelatedModule = @() |
| 19 | + BuildModule = @('EZOut','Piecemeal','PipeScript','HelpOut', 'PSDevOps') |
| 20 | + Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler' |
19 | 21 | ReleaseNotes = @' |
| 22 | +## 0.0.12: |
| 23 | +* Adding assert keyword (#143) |
| 24 | +* Fixing new keyword for blank constructors (#142 ) |
| 25 | +* Rest Transpiler: |
| 26 | + * Handling multiple QueryString values (#139) |
| 27 | + * Only passing ContentType to invoker if invoker supports it (#141) |
| 28 | + * Defaulting to JSON body when ContentType is unspecified (#140) |
| 29 | +--- |
| 30 | +
|
20 | 31 | ## 0.0.11: |
21 | 32 | * Source Generators Now Support Parameters / Arguments (#75) |
22 | 33 | * Invoke-PipeScript Terminating Build Errors (#135) |
|
0 commit comments