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

release 0.2.3

+7 -1
+6
CHANGELOG.md
··· 1 + ## [0.2.3] - 2023-09-28 2 + 3 + - fixed encoding of image CIDs again (they should be wrapped in a `$link` object) 4 + - binary strings are now correctly returned as `$bytes` objects 5 + - added `list`, `listblock` and `threadgate` to record type symbols and collection constants 6 + 1 7 ## [0.2.2] - 2023-09-06 2 8 3 9 - fixed image CIDs returned in the record JSON as CBOR tag objects (they are now returned decoded to the string form)
+1 -1
lib/skyfall/version.rb
··· 1 1 # frozen_string_literal: true 2 2 3 3 module Skyfall 4 - VERSION = "0.2.2" 4 + VERSION = "0.2.3" 5 5 end