Skip to content

Commit 5391bea

Browse files
committed
fix export bn from tools & release 0.1.1
1 parent b9e2cd2 commit 5391bea

5 files changed

Lines changed: 9 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.DS_Store
2+
/**/.DS_Store
23

34
/node_modules/
45
packages/**/dist

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.1.1] - 2023-03-07
810
### Fixed
911
- `root`: Links to the packages in the `README.md` file
12+
- `@distributedlab/tools`: Export `BN` class
1013

1114
## [0.1.0] - 2023-03-06
1215
### Added
@@ -33,5 +36,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3336

3437
[old repo]: https://github.com/distributed-lab/web-kit-old
3538

36-
[Unreleased]: https://github.com/distributed-lab/web-kit/compare/0.1.0...HEAD
39+
[Unreleased]: https://github.com/distributed-lab/web-kit/compare/0.1.1...HEAD
40+
[0.1.1]: https://github.com/distributed-lab/web-kit/compare/0.1.0...0.1.1
3741
[0.1.0]: https://github.com/distributed-lab/web-kit/releases/tag/0.1.0

packages/jac/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@distributedlab/jac",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "A library for constructing JSON-API compliant requests and responses",
55
"repository": {
66
"type": "git",

packages/tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@distributedlab/tools",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Collection of common utility functions and classes",
55
"repository": {
66
"type": "git",

packages/tools/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
export * from '@/bn'
12
export * from '@/duration'
23
export * from '@/event-emitter'
34
export * from '@/time'

0 commit comments

Comments
 (0)