Skip to content

Releases: adamwulf/PonyExpress

2.0.1

14 Mar 16:44
Compare
Choose a tag to compare

Adds the ability to register blocks or methods without any parameters.

postOffice.register(ExampleVerifiedMail.self, recipient, SpecificRecipient.receiveVerifiedMail)
// or
postOffice.register(sender: sender1, ExampleVerifiedMail.self) { ... }

This currently works for VerifiedMail notifications only. UnverifiedMail will be added in a future version.

2.0.0

18 Jan 03:58
a879df4
Compare
Choose a tag to compare

Update Mail to be either VerifiedMail or UnverifiedMail. All VerifiedMail must define a sender type and must be posted by an object of that type. UnverifiedMail can be posted by any sender type.

1.0.1

13 Dec 21:02
Compare
Choose a tag to compare

Moves Locks repo to .upToNextMajor(from: "1.0.0"). Adds locking around observer recipient id.

1.0.0

26 Nov 03:36
Compare
Choose a tag to compare

Initial release of PonyExpress!