11@ {
22 RootModule = ' Eventful.psm1'
33 Description = ' Easy Eventful Asynchronous Scripting with PowerShell'
4- ModuleVersion = ' 0.1.5 '
4+ ModuleVersion = ' 0.1.6 '
55 GUID = ' f4d780da-be78-49c6-921a-436e053cb97c'
66 Author = ' James Brundage'
77 Copyright = ' 2021 Start-Automating'
1616 Tags = ' Eventful' , ' Events'
1717
1818 ReleaseNotes = @'
19+ ## 0.1.6
20+ * Adding LocationChanged event source (Fixes #12)
21+
22+ ---
23+
1924## 0.1.5
2025* Adding On@Event (#2)
2126* Send-Event support for piping existing events (#4)
2227* Adding /docs (#5)
28+
2329---
30+
2431## 0.1.4
2532
2633* Module Rebranded to Eventful.
2734* Get-EventHandler added
35+
2836---
37+
2938## 0.1.3
3039New Event Source:
3140* VariableSet
@@ -34,18 +43,24 @@ Receive-Event now returns event most-recent to least-recent.
3443Receive-Event now has -First and -Skip.
3544
3645Bugfix: On@Repeat now actually starts it's timer.
46+
3747---
48+
3849## 0.1.2
3950New Event Source:
4051* UDP
4152
4253PowerShellAsync Event Source now allows for a -Parameter dictionaries.
54+
4355---
56+
4457## 0.1.1
4558New Event Sources:
4659* HTTPResponse
4760* PowerShellAsync
61+
4862---
63+
4964New Event Source Capabilities:
5065
5166Event Sources can now return an InitializeEvent property or provide a ComponentModel.InitializationEvent attribute.
@@ -56,6 +71,7 @@ Initial Module Release.
5671
5772Fun simple event syntax (e.g. on mysignal {"do this"} or on delay "00:00:01" {"do that"})
5873Better pipelining support for Sending events.
74+
5975---
6076'@
6177 }
@@ -72,6 +88,7 @@ Better pipelining support for Sending events.
7288 ' VariableSet' = ' EventSources/@VariableSet.ps1'
7389 ' UDP' = ' EventSources/@UDP.ps1'
7490 ' Event' = ' EventSources/@Event.ps1'
91+ ' LocationChanged' = ' EventSources/@LocationChanged.ps1'
7592 }
7693 }
7794}
0 commit comments