Skip to content

Commit 032df41

Browse files
author
James Brundage
committed
release: WebSocket 0.1.2 ( Fixes #38 )
Updating Release Notes and CHANGELOG, explicitly exporting commands
1 parent 563a88d commit 032df41

File tree

2 files changed

+21
-15
lines changed

2 files changed

+21
-15
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
> Like It? [Star It](https://github.com/PowerShellWeb/WebSocket)
22
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
33
4+
## WebSocket 0.1.2
5+
6+
* WebSocket now decorates (#34)
7+
* Added a -PSTypeName(s) parameter to Get-WebSocket, so we can extend the output.
8+
* Reusing WebSockets (#35)
9+
* If a WebSocketUri is already open, we will reuse it.
10+
* Explicitly exporting commands (#38)
11+
* This should enable automatic import and enable Find-Command
12+
13+
---
14+
415
## WebSocket 0.1.1
516

617
* WebSocket GitHub Action

WebSocket.psd1

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
@{
2-
ModuleVersion = '0.1.1'
2+
ModuleVersion = '0.1.2'
33
RootModule = 'WebSocket.psm1'
44
Guid = '75c70c8b-e5eb-4a60-982e-a19110a1185d'
55
Author = 'James Brundage'
66
CompanyName = 'StartAutomating'
77
Copyright = '2024 StartAutomating'
88
Description = 'Work with WebSockets in PowerShell'
9+
FunctionsToExport = @('Get-WebSocket')
10+
AliasesToExport = @('WebSocket')
911
PrivateData = @{
1012
PSData = @{
1113
Tags = @('WebSocket', 'WebSockets', 'Networking', 'Web')
@@ -15,21 +17,14 @@
1517
> Like It? [Star It](https://github.com/PowerShellWeb/WebSocket)
1618
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
1719
18-
## WebSocket 0.1.1
20+
## WebSocket 0.1.2
1921
20-
* WebSocket GitHub Action
21-
* Run any `*.WebSocket.ps1` files in a repository (#24)
22-
* WebSocket container updates
23-
* Container now runs mounted `*.WebSocket.ps1` files (#26)
24-
* Get-WebSocket improvements:
25-
* New Parameters:
26-
* -Maximum (#22)
27-
* -TimeOut (#23)
28-
* -WatchFor (#29)
29-
* -RawText (#30)
30-
* -Binary (#31)
31-
* WebSocket Testing (#25)
32-
* Adding FUNDING.yml (#14)
22+
* WebSocket now decorates (#34)
23+
* Added a -PSTypeName(s) parameter to Get-WebSocket, so we can extend the output.
24+
* Reusing WebSockets (#35)
25+
* If a WebSocketUri is already open, we will reuse it.
26+
* Explicitly exporting commands (#38)
27+
* This should enable automatic import and enable Find-Command
3328
3429
---
3530

0 commit comments

Comments
 (0)