@thi.ng/hex 0.2.7 → 1.0.4

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,38 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@1.0.3...@thi.ng/hex@1.0.4) (2021-08-17)
7
+
8
+ **Note:** Version bump only for package @thi.ng/hex
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@1.0.2...@thi.ng/hex@1.0.3) (2021-08-08)
15
+
16
+ **Note:** Version bump only for package @thi.ng/hex
17
+
18
+
19
+
20
+
21
+
22
+ ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@1.0.1...@thi.ng/hex@1.0.2) (2021-08-08)
23
+
24
+ **Note:** Version bump only for package @thi.ng/hex
25
+
26
+
27
+
28
+
29
+
30
+ ## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@0.2.7...@thi.ng/hex@1.0.1) (2021-08-08)
31
+
32
+ **Note:** Version bump only for package @thi.ng/hex
33
+
34
+
35
+
36
+
37
+
6
38
  ## [0.2.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@0.2.6...@thi.ng/hex@0.2.7) (2021-07-01)
7
39
 
8
40
  **Note:** Version bump only for package @thi.ng/hex
package/README.md CHANGED
@@ -11,6 +11,7 @@ This project is part of the
11
11
 
12
12
  - [About](#about)
13
13
  - [Status](#status)
14
+ - [Related packages](#related-packages)
14
15
  - [Installation](#installation)
15
16
  - [Dependencies](#dependencies)
16
17
  - [API](#api)
@@ -23,10 +24,14 @@ Hex string formatters for 4/8/16/24/32/48/64bit words.
23
24
 
24
25
  ### Status
25
26
 
26
- **ALPHA** - bleeding edge / work-in-progress
27
+ **STABLE** - used in production
27
28
 
28
29
  [Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Bhex%5D+in%3Atitle)
29
30
 
31
+ ### Related packages
32
+
33
+ - [@thi.ng/base-n](https://github.com/thi-ng/umbrella/tree/develop/packages/base-n) - Arbitrary base-n conversions w/ presets for base16/32/36/58/62/64/85, support for arrays & bigints
34
+
30
35
  ## Installation
31
36
 
32
37
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/hex",
3
- "version": "0.2.7",
3
+ "version": "1.0.4",
4
4
  "description": "Hex string formatters for 4/8/16/24/32/48/64bit words",
5
5
  "module": "./index.js",
6
6
  "main": "./lib/index.js",
@@ -54,8 +54,10 @@
54
54
  },
55
55
  "sideEffects": false,
56
56
  "thi.ng": {
57
- "status": "alpha",
57
+ "related": [
58
+ "base-n"
59
+ ],
58
60
  "year": 2020
59
61
  },
60
- "gitHead": "a3dadf7acedcca6a15a7e6d655c923b16e2ededa"
62
+ "gitHead": "3365151f112c39f224541f5ac4cedf3370eb9ba4"
61
63
  }