bit-sequence 1.2.1 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,7 +13,7 @@ jobs:
13
13
  working-directory: go
14
14
  steps:
15
15
  - name: Checkout Repository
16
- uses: actions/checkout@v6
16
+ uses: actions/checkout@v6.0.2
17
17
  - name: Setup Go
18
18
  uses: actions/setup-go@v6
19
19
  with:
@@ -35,7 +35,7 @@ jobs:
35
35
  working-directory: go
36
36
  steps:
37
37
  - name: Checkout Repository
38
- uses: actions/checkout@v6
38
+ uses: actions/checkout@v6.0.2
39
39
  - name: Setup Go
40
40
  uses: actions/setup-go@v6
41
41
  with:
@@ -11,9 +11,9 @@ jobs:
11
11
  runs-on: ${{ matrix.os }}
12
12
  steps:
13
13
  - name: Checkout Repository
14
- uses: actions/checkout@v6
14
+ uses: actions/checkout@v6.0.2
15
15
  - name: Use Node.js ${{ matrix.node }}
16
- uses: actions/setup-node@v6
16
+ uses: actions/setup-node@v6.3.0
17
17
  with:
18
18
  node-version: ${{ matrix.node }}
19
19
  - name: Install Dependencies
@@ -37,11 +37,11 @@ jobs:
37
37
  id-token: write
38
38
  steps:
39
39
  - name: Checkout
40
- uses: actions/checkout@v6
40
+ uses: actions/checkout@v6.0.2
41
41
  with:
42
42
  fetch-depth: 0
43
43
  - name: Setup Node.js
44
- uses: actions/setup-node@v6
44
+ uses: actions/setup-node@v6.3.0
45
45
  with:
46
46
  node-version: lts/*
47
47
  registry-url: 'https://registry.npmjs.org'
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [1.2.3](https://github.com/rvagg/bit-sequence/compare/v1.2.2...v1.2.3) (2026-06-04)
2
+
3
+ ### Trivial Changes
4
+
5
+ * **deps:** bump actions/checkout from 6 to 6.0.2 ([#7](https://github.com/rvagg/bit-sequence/issues/7)) ([a372077](https://github.com/rvagg/bit-sequence/commit/a37207704367ef41684b3f51112fd5424b4894fe))
6
+
7
+ ## [1.2.2](https://github.com/rvagg/bit-sequence/compare/v1.2.1...v1.2.2) (2026-04-28)
8
+
9
+ ### Trivial Changes
10
+
11
+ * **deps:** bump actions/setup-node from 6 to 6.3.0 ([#5](https://github.com/rvagg/bit-sequence/issues/5)) ([fb5a1f7](https://github.com/rvagg/bit-sequence/commit/fb5a1f7461caed641db17909b0a81735b99f81ee))
12
+
1
13
  ## [1.2.1](https://github.com/rvagg/bit-sequence/compare/v1.2.0...v1.2.1) (2026-03-30)
2
14
 
3
15
  ### Trivial Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bit-sequence",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "Turn an arbitrary sequence of bits from a byte array into an integer",
5
5
  "type": "module",
6
6
  "main": "js/bit-sequence.js",