From 5391beab93d19da5ee160c0b6fb07e674f22f0c8 Mon Sep 17 00:00:00 2001 From: Semen Loktionov Date: Tue, 7 Mar 2023 11:47:07 +0200 Subject: [PATCH] fix export bn from tools & release 0.1.1 --- .gitignore | 1 + CHANGELOG.md | 6 +++++- packages/jac/package.json | 2 +- packages/tools/package.json | 2 +- packages/tools/src/index.ts | 1 + 5 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 438bcac6..2eb58818 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .DS_Store +/**/.DS_Store /node_modules/ packages/**/dist diff --git a/CHANGELOG.md b/CHANGELOG.md index fec653ce..6835fbce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.1.1] - 2023-03-07 ### Fixed - `root`: Links to the packages in the `README.md` file +- `@distributedlab/tools`: Export `BN` class ## [0.1.0] - 2023-03-06 ### Added @@ -33,5 +36,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [old repo]: https://github.com/distributed-lab/web-kit-old -[Unreleased]: https://github.com/distributed-lab/web-kit/compare/0.1.0...HEAD +[Unreleased]: https://github.com/distributed-lab/web-kit/compare/0.1.1...HEAD +[0.1.1]: https://github.com/distributed-lab/web-kit/compare/0.1.0...0.1.1 [0.1.0]: https://github.com/distributed-lab/web-kit/releases/tag/0.1.0 diff --git a/packages/jac/package.json b/packages/jac/package.json index ccdf14be..49dcd13a 100644 --- a/packages/jac/package.json +++ b/packages/jac/package.json @@ -1,6 +1,6 @@ { "name": "@distributedlab/jac", - "version": "0.1.0", + "version": "0.1.1", "description": "A library for constructing JSON-API compliant requests and responses", "repository": { "type": "git", diff --git a/packages/tools/package.json b/packages/tools/package.json index 2901b142..5e616d6a 100644 --- a/packages/tools/package.json +++ b/packages/tools/package.json @@ -1,6 +1,6 @@ { "name": "@distributedlab/tools", - "version": "0.1.0", + "version": "0.1.1", "description": "Collection of common utility functions and classes", "repository": { "type": "git", diff --git a/packages/tools/src/index.ts b/packages/tools/src/index.ts index bfb7b8c4..ba058ed3 100644 --- a/packages/tools/src/index.ts +++ b/packages/tools/src/index.ts @@ -1,3 +1,4 @@ +export * from '@/bn' export * from '@/duration' export * from '@/event-emitter' export * from '@/time'