Skip to content

Commit b6762fd

Browse files
committed
release 0.3.0
1 parent 9af6961 commit b6762fd

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [0.3.0] - 2024-03-21
2+
3+
- added support for labeller firehose, served by labeller services at the `com.atproto.label.subscribeLabels` endpoint (aliased as `:subscribe_labels`)
4+
- the `#labels` messages from the labeller firehose are parsed into a `LabelsMessage`, which includes a `labels` array of `Label` objects
5+
- `Stream` callbacks can now also be assigned via setters, e.g. `stream.on_message = proc { ... }`
6+
- added default error handler to `Stream` which logs the error to `$stdout` - set `stream.on_error = nil` to disable
7+
- 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
8+
19
## [0.2.5] - 2024-03-14
210

311
- added `:bsky_labeler` record type symbol & collection constant

lib/skyfall/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Skyfall
4-
VERSION = "0.2.5"
4+
VERSION = "0.3.0"
55
end

0 commit comments

Comments
 (0)