···11+## [0.2.0] - 2023-07-24
22+33+- switched the websocket library from `websocket-client-simple` to `faye-websocket`, which should make event parsing up to ~30× faster (!)
44+- added `auto_reconnect` property to `Stream` (on by default) - if true, it will try to reconnect with an exponential backoff when the websocket disconnects, until you call `Stream#disconnect`
55+66+Note:
77+88+- calling `sleep` is no longer needed after connecting - call `connect` on a new thread instead to get previously default behavior of running the event loop asynchronously
99+- the disconnect event no longer passes an error object in the argument
1010+- there is currently no "heartbeat" feature as in 0.1.x that checks for a stuck connection - but it doesn't seem to be needed
1111+112## [0.1.3] - 2023-07-04
213314- allow passing a previously saved cursor to websocket to replay any missed events
+1-1
lib/skyfall/version.rb
···11# frozen_string_literal: true
2233module Skyfall
44- VERSION = "0.1.3"
44+ VERSION = "0.2.0"
55end