Skip to content

Commit 05c18a0

Browse files
committed
release: v1.1.26
1 parent cf21f86 commit 05c18a0

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 2025-12-21 - 1.1.26
4+
5+
- chore: remove log
6+
37
## 2025-12-21 - 1.1.25
48

59
- feat: Implement SWAR-based string serialization

assembly/serialize/swar/string.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function serializeString_SWAR(src: string): void {
4141

4242
while (mask != 0) {
4343
const lane_index = usize(ctz(mask) >> 3);
44-
console.log("lane index " + lane_index.toString());
44+
// console.log("lane index " + lane_index.toString());
4545
const src_offset = srcStart + lane_index;
4646
const code = load<u16>(src_offset) << 2;
4747
const escaped = load<u32>(SERIALIZE_ESCAPE_TABLE + code);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "json-as",
3-
"version": "1.1.25",
3+
"version": "1.1.26",
44
"author": "Jairus Tanaka",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)