Skip to content

Commit ae90dcb

Browse files
committed
chore(release): 0.1.0
1 parent a4e29d8 commit ae90dcb

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
33

4-
name: Node.js CI
4+
name: CI
55

66
on:
77
push:

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
3+
## 0.1.0 (2022-01-02)
4+
5+
* `ByteCursor` abstraction to read and write safely a buffer of bytes
6+
7+
* Enable to configure at runtime:
8+
- initial buffer length
9+
- maximum buffer length
10+
- thresholds (string length) for switching from custom to native UTF-8 decoders/encoders
11+
12+
* Decoders and encoders for basic types (bool, opaque data, floats, integers, typed arrays, UTF-8 string)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bare-ts/lib",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "TypeScript library for BARE, a compact and simple binary-serialization format",
55
"keywords": [
66
"bare",

0 commit comments

Comments
 (0)