Releases: ethereumjs/rlp
v2.2.7 - Patch Release
- Performance: Avoid creating new array when checking first two chars, PR #100
- Update BN from require to import, PR #99
- Update dependencies to latest and add browser build, PR #102
Included Source Files
Source files from the src
folder are now included in the distribution build, see PR #97. This allows for a better debugging experience in debug tools like Chrome DevTools by having working source map references to the original sources available for inspection.
v2.2.6 - Patch Release
v2.2.5 - BigInt Encoding Support
v2.2.4 - Bugfix Release
v2.2.3 - Bugfix Release
v2.2.2 - Bugfix Release
v2.2.1 - Bugfix Release
- Fixed a bug introduced in
v2.2.0
causing the CLIbin/rlp
command not to
work, see PR #60 - Additional exports of types used by
decode
andencode
(PR #59):Input
: input type forencode()
Dictionary
andList
: interfaces for possibleInput
valuesDecoded
: interface fordecode()
return type
- Additional test structure and new integration tests for distribution and
bin/rlp
CLI command, see PR #57
v2.2.0 - Feature Release: TypeScript
[DEPRECATED] Please update to v2.2.1
, release contains a broken CLI bin/rlp
command!
First TypeScript
based release of EthereumJS
libraries, thanks @krzkaczor,
@GrandSchtroumpf, @whymarrh, @holgerd77 for the great work on this!
This release doesn't introduce any main new features but will serve as a basis
for further TypeScript
transitions coming along with greater type safety
for EthereumJS
libraries. If you are developing in TypeScript
you can
further already benefit from the RLP
type declarations published from now on
along new releases.
See PR #37 and subsequent PRs merged
towards the associated typescript
branch to get an overview on the changes.
The release also comes along with the introduction of a new repo
ethereumjs-config centralizing
configuration for EthereumJS
libraries on TypeScript
itself as well as
linting, formatting and testing.
This release passes all existing unit tests and other checks. If you nevertheless
experience problems please report on the EthereumJS
Gitter channel.
Other changes:
- Added
LICENSE
file forMPL2.0
, see PR #31