Skip to content

Commit fa89462

Browse files
committed
chore: bump chronicle version and fix minor formatting
1 parent 5a8d575 commit fa89462

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

docs/vercel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"framework": null,
3-
"buildCommand": "npx @raystack/chronicle@0.5.2 build --preset=vercel --content=./",
3+
"buildCommand": "npx @raystack/chronicle@0.5.4 build --preset=vercel --content=./",
44
"installCommand": "echo 'skip'"
55
}

pkg/tmdl/frame.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ func (h *PrimaryHeader) Encode() ([]byte, error) {
7272

7373
// Pack First Header Pointer (11 bits)
7474
header[4] |= uint8((h.FirstHeaderPtr >> 8) & 0x07) // Top 3 bits
75-
header[5] = uint8(h.FirstHeaderPtr & 0xFF) // Bottom 8 bits
75+
header[5] = uint8(h.FirstHeaderPtr & 0xFF) // Bottom 8 bits
7676

7777
return header, nil
7878
}

pkg/tmdl/physical_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,4 +208,3 @@ func TestPhysicalChannel_HasPendingFrames(t *testing.T) {
208208
t.Error("Expected true")
209209
}
210210
}
211-

0 commit comments

Comments
 (0)