···11+## [0.3.0] - 2024-03-21
22+33+- added support for labeller firehose, served by labeller services at the `com.atproto.label.subscribeLabels` endpoint (aliased as `:subscribe_labels`)
44+- the `#labels` messages from the labeller firehose are parsed into a `LabelsMessage`, which includes a `labels` array of `Label` objects
55+- `Stream` callbacks can now also be assigned via setters, e.g. `stream.on_message = proc { ... }`
66+- added default error handler to `Stream` which logs the error to `$stdout` - set `stream.on_error = nil` to disable
77+- added Ruby stdlib dependencies explicitly to the gemspec - fixes a warning in Ruby 3.3 when requiring `base64`, which will be extracted as an optional gem in 3.4
88+19## [0.2.5] - 2024-03-14
210311- added `:bsky_labeler` record type symbol & collection constant
+1-1
lib/skyfall/version.rb
···11# frozen_string_literal: true
2233module Skyfall
44- VERSION = "0.2.5"
44+ VERSION = "0.3.0"
55end