Skip to content

Commit 8ca2315

Browse files
release: JSON-LD 0.1.1
Updating Module Manifest and CHANGELOG
1 parent cec1f59 commit 8ca2315

2 files changed

Lines changed: 48 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,32 @@
1-
> Like It? [Star It](https://github.com/PowerShellWeb/JSON-LD)
2-
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
1+
Please:
2+
3+
* [Like, Share, and Subscribe](https://github.com/PowerShellWeb/JSON-LD)
4+
* [Support Us](https://github.com/sponsors/StartAutomating)
5+
6+
---
7+
8+
## JSON-LD 0.1.1
9+
10+
* Updating Examples (#13)
11+
* Simplfiying module scaffolding (#15)
12+
* Building types with EZOut (#5)
13+
* Supporting file input (#23)
14+
* `Get-JSONLD -as`
15+
* `Get-JSONLD -as json` (#16)
16+
* `Get-JSONLD -as html` (#17)
17+
* `Get-JSONLD -as script` (#18)
18+
* `Get-JSONLD -as xml` (#19)
19+
* Adding conversion to JsonSchema (#21)
20+
* Adding conversion to At Protocol Lexicons (#22)
21+
22+
---
323

424
## JSON-LD 0.1
525

626
Caching JSON-LD requests
727

28+
---
29+
830
## JSON-LD 0.0.1
931

1032
Get Linked Data from any page

JSON-LD.psd1

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,46 @@
11
@{
22
RootModule = 'JSON-LD.psm1'
3-
ModuleVersion = '0.1'
3+
ModuleVersion = '0.1.1'
44
GUID = '4e65477c-012c-4077-87c7-3e07964636ce'
55
Author = 'James Brundage'
66
CompanyName = 'Start-Automating'
7-
Copyright = '(c) 2025 Start-Automating.'
7+
Copyright = '(c) 2025-2026 Start-Automating.'
88
Description = 'Get JSON Linked Data with PowerShell'
99
FunctionsToExport = 'Get-JsonLD'
1010
AliasesToExport = 'jsonLD', 'json-ld'
11+
TypesToProcess = 'JSON-LD.types.ps1xml'
1112
PrivateData = @{
1213
PSData = @{
1314
# Tags applied to this module. These help with module discovery in online galleries.
14-
Tags = @('json-ld','SEO','Web','PowerShellWeb')
15+
Tags = @('json-ld','SEO','Web','PoshWeb','LinkedData','schema.org')
1516
# A URL to the license for this module.
16-
ProjectURI = 'https://github.com/PowerShellWeb/JSON-LD'
17-
LicenseURI = 'https://github.com/PowerShellWeb/JSON-LD/blob/main/LICENSE'
17+
ProjectURI = 'https://github.com/PoshWeb/JSON-LD'
18+
LicenseURI = 'https://github.com/PoshWeb/JSON-LD/blob/main/LICENSE'
1819
ReleaseNotes = @'
20+
---
1921
20-
> Like It? [Star It](https://github.com/PowerShellWeb/JSON-LD)
21-
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
22+
## JSON-LD 0.1.1
2223
23-
## JSON-LD 0.1
24+
* Updating Examples (#13)
25+
* Simplfiying module scaffolding (#15)
26+
* Building types with EZOut (#5)
27+
* Supporting file input (#23)
28+
* `Get-JSONLD -as`
29+
* `Get-JSONLD -as json` (#16)
30+
* `Get-JSONLD -as html` (#17)
31+
* `Get-JSONLD -as script` (#18)
32+
* `Get-JSONLD -as xml` (#19)
33+
* Adding conversion to JsonSchema (#21)
34+
* Adding conversion to At Protocol Lexicons (#22)
2435
25-
Caching JSON-LD requests
36+
---
2637
27-
Get Linked Data from any page
38+
Please:
2839
29-
## JSON-LD 0.0.1
40+
* [Like, Share, and Subscribe](https://github.com/PowerShellWeb/JSON-LD)
41+
* [Support Us](https://github.com/sponsors/StartAutomating)
3042
31-
* Initial Release of JSON-LD Module (#1)
32-
* `Get-JsonLD` gets linked data (#2)
33-
* `Get-JsonLD` is aliased to `jsonLD` and `json-ld`
43+
Additional History in [CHANGELOG](https://github.com/PoshWeb/JSON-LD/blob/main/CHANGELOG.md)
3444
'@
3545
}
3646
}

0 commit comments

Comments
 (0)