A Ruby gem for streaming data from the Bluesky/ATProto firehose

release 0.6.0

+6 -1
+5
CHANGELOG.md
··· 1 + ## [0.6.0] - 2025-06-25 2 + 3 + - significantly speeded up reading of events from the binary firehose (`Skyfall::Firehose`) - up to 4-5x faster than before 4 + - removed the `Skyfall::Stream.new` constructor deprecated in 0.5.0 5 + 1 6 ## [0.5.1] - 2025-05-18 2 7 3 8 - added support for the new `#sync` message type
+1 -1
lib/skyfall/version.rb
··· 1 1 # frozen_string_literal: true 2 2 3 3 module Skyfall 4 - VERSION = "0.5.1" 4 + VERSION = "0.6.0" 5 5 end