Skip to content

Latest commit

 

History

History
95 lines (55 loc) · 1.85 KB

changelog.md

File metadata and controls

95 lines (55 loc) · 1.85 KB

base58-js changelog

3.0.2

  • Added support for both named exports and explicit .js paths for binary_to_base58 and base58_to_binary modules.
  • Consumers can now import modules either without the .js extension or with it directly:

Without .js:

import binaryToBase58 from "base58-js/binary_to_base58";

With .js:

import binaryToBase58 from "base58-js/binary_to_base58.js";

3.0.1

Patch

  • Changed testing suite to mocha/chai.
  • removed size-limit.
  • Depen updates

3.0.0

Major

  • TypeScript declaration files (.d.ts) have been added for all public modules.
  • Support for node >=14.0.0 & npm >=7.0.0.
  • Imports now favours dropping the file extension.
  • Refined exports Field: Simplified the module exports by removing the .mjs and .js extensions from the paths. Now, users can import modules without needing to specify the file extension.

2.0.1

Patch

  • paydevs registry

2.0.0

Major

  • Upgraded to ESM as CJS is superseded.

Minor

1.0.5

Patch

  • Fixes #3

1.0.4

Patch

  • Changelog fixes.

Patch

  • Deprecation warning not actually fixed... again 😅.

Patch

  • Changelog updates.

1.0.2

Patch

  • Changelog updates.

1.0.1

  • Fixes #2.
  • Dev dependency updates.

1.0.0

Patch

  • package.json files removed static from white list.
  • Updated readme to reflects base58-js instead of base58.
  • Updated description.
  • size-limit fix, using @size-limit/preset-small-lib.

1.0.0-rc

Initial Release.