From 6b9378b2e7d7e7a8430fbc3c183355c8e94ed1ed Mon Sep 17 00:00:00 2001 From: James Brundage <+@noreply.github.com> Date: Wed, 18 Dec 2024 23:38:32 -0800 Subject: [PATCH] release: GQL 0.1 ( Fixes #1 ) Updating Module Manifest and adding CHANGELOG --- CHANGELOG.md | 10 ++++++++++ GQL.psd1 | 14 ++++++++++++-- 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..eb46760 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +## GQL 0.1 + +* Initial Release of GQL +* One Simple Command for GraphQL: `Get-GQL` (or `GQL`) +* Container and GitHub action included! + +--- + +> Like It? [Star It](https://github.com/PowerShellWeb/WebSocket) +> Love It? [Support It](https://github.com/sponsors/StartAutomating) \ No newline at end of file diff --git a/GQL.psd1 b/GQL.psd1 index cbea2e0..746ca7d 100644 --- a/GQL.psd1 +++ b/GQL.psd1 @@ -5,13 +5,23 @@ Author = 'James Brundage' CompanyName = 'Start-Automating' Description = 'Get GraphQL in PowerShell' + Copyright = '2024 Start-Automating' PrivateData = @{ PSData = @{ - Tags = @('GraphQL','GraphAPI','GraphQueryLanguage') + Tags = @('GraphQL','GraphAPI','GraphQueryLanguage','PowerShellWeb') ProjectURI = 'https://github.com/PowerShellWeb/GQL' LicenseURI = 'https://github.com/PowerShellWeb/GQL/blob/main/LICENSE' - ReleaseNotes = @' + ReleaseNotes = @' +## GQL 0.1 +* Initial Release of GQL +* One Simple Command for GraphQL: `Get-GQL` (or `GQL`) +* Container and GitHub action included! + +--- + +> Like It? [Star It](https://github.com/PowerShellWeb/WebSocket) +> Love It? [Support It](https://github.com/sponsors/StartAutomating) '@ } }