📢 Release v2.0.0
⚠️ Breaking Change
This release introduces a breaking change in how the PubSub instance is created.
Instance creation has changed:
❌ Previous (no longer works):
const pubSub = PubSub();✅ Now (correct way):
const pubSub = new PubSub();