@guanghechen/byte 1.0.0-alpha.6 → 1.0.0

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,17 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 1.0.0-alpha.7 (2024-09-18)
7
+
8
+ - :art: format codes ([177eb54](https://github.com/guanghechen/sora/commit/177eb54))
9
+ - :wrench: chore: upgrade devDependencies and fix configs
10
+ ([230fb63](https://github.com/guanghechen/sora/commit/230fb63))
11
+
12
+ # Change Log
13
+
14
+ All notable changes to this project will be documented in this file. See
15
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
16
+
6
17
  # [1.0.0-alpha.6](https://github.com/guanghechen/sora/compare/@guanghechen/byte@1.0.0-alpha.5...@guanghechen/byte@1.0.0-alpha.6) (2024-02-03)
7
18
 
8
19
  ### Performance Improvements
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <header>
2
2
  <h1 align="center">
3
- <a href="https://github.com/guanghechen/sora/tree/@guanghechen/byte@1.0.0-alpha.6/packages/byte#readme">@guanghechen/byte</a>
3
+ <a href="https://github.com/guanghechen/sora/tree/@guanghechen/byte@1.0.0/packages/byte#readme">@guanghechen/byte</a>
4
4
  </h1>
5
5
  <div align="center">
6
6
  <a href="https://www.npmjs.com/package/@guanghechen/byte">
@@ -68,4 +68,4 @@ Utility functions for bytes (Uint8Array).
68
68
  ## Usage
69
69
 
70
70
  [homepage]:
71
- https://github.com/guanghechen/sora/tree/@guanghechen/byte@1.0.0-alpha.6/packages/byte#readme
71
+ https://github.com/guanghechen/sora/tree/@guanghechen/byte@1.0.0/packages/byte#readme
package/lib/cjs/index.cjs CHANGED
@@ -243,3 +243,4 @@ exports.randomBytes = randomBytes;
243
243
  exports.text2bytes = text2bytes;
244
244
  exports.utf8Text2bytes = utf8Text2bytes;
245
245
  exports.validateBase64Text = validateBase64Text;
246
+ //# sourceMappingURL=index.cjs.map
package/lib/esm/index.mjs CHANGED
@@ -228,3 +228,4 @@ function randomBytes(size) {
228
228
  }
229
229
 
230
230
  export { areSameBytes, base64Text2bytes, bytes2base64Text, bytes2hexText, bytes2text, bytes2utf8Text, destroyBytes, destroyBytesList, hexText2bytes, mergeBytes, randomBytes, text2bytes, utf8Text2bytes, validateBase64Text };
231
+ //# sourceMappingURL=index.mjs.map
@@ -51,3 +51,4 @@ declare function mergeBytes(bytesList: ReadonlyArray<Uint8Array>): Uint8Array;
51
51
  declare function randomBytes(size: number): Uint8Array;
52
52
 
53
53
  export { type IByteEncoding, areSameBytes, base64Text2bytes, bytes2base64Text, bytes2hexText, bytes2text, bytes2utf8Text, destroyBytes, destroyBytesList, hexText2bytes, mergeBytes, randomBytes, text2bytes, utf8Text2bytes, validateBase64Text };
54
+ //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guanghechen/byte",
3
- "version": "1.0.0-alpha.6",
3
+ "version": "1.0.0",
4
4
  "description": "Utility functions for bytes (Uint8Array).",
5
5
  "author": {
6
6
  "name": "guanghechen",
@@ -8,10 +8,10 @@
8
8
  },
9
9
  "repository": {
10
10
  "type": "git",
11
- "url": "https://github.com/guanghechen/sora/tree/@guanghechen/byte@1.0.0-alpha.5",
11
+ "url": "https://github.com/guanghechen/sora/tree/@guanghechen/byte@1.0.0-alpha.7",
12
12
  "directory": "packages/byte"
13
13
  },
14
- "homepage": "https://github.com/guanghechen/sora/tree/@guanghechen/byte@1.0.0-alpha.5/packages/byte#readme",
14
+ "homepage": "https://github.com/guanghechen/sora/tree/@guanghechen/byte@1.0.0-alpha.7/packages/byte#readme",
15
15
  "keywords": [
16
16
  "Uint8Array"
17
17
  ],
@@ -37,5 +37,5 @@
37
37
  "LICENSE",
38
38
  "README.md"
39
39
  ],
40
- "gitHead": "9c051a66df3f4dbd8eddd709046af0a975fdc702"
40
+ "gitHead": "2723aaa31e8ac85afed5b25760875db429d88563"
41
41
  }