Skip to content

Commit

Permalink
Merge branch 'main' into feature/bn2
Browse files Browse the repository at this point in the history
  • Loading branch information
napalmpapalam committed Jul 11, 2023
2 parents 11f87b9 + 107ae17 commit 54bb5e7
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 25 deletions.
24 changes: 5 additions & 19 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,12 @@ on:
- '*.*.*'

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
nodejs: [18]

steps:
- uses: actions/checkout@v3
- name: Build on Node.js ${{ matrix.nodejs }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.nodejs }}
- run: yarn install
- run: yarn build
- run: yarn lint
- run: yarn test
env:
CI: true

publish:
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
nodejs: [ 18 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -37,6 +21,8 @@ jobs:
run: |
yarn install
yarn build
yarn lint
yarn test
yarn publish-latest
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ All notable changes to this project will be documented in this file.
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.3.0-rc.0] - 2023-07-11
### Added
- `@distributedlab/tools`
- `BN`
Expand All @@ -29,6 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `@distributedlab/tools` - `BN_ROUNDING.HALF_EVEN` rounding mode
- `@distributedlab/tools` - `BnFormatConfig.secondGroupSize` field

## [0.2.0] - 2023-07-11

## [0.2.0-rc.25] - 2023-07-06
### Added
- `@distributedlab/w3p` - `RawProvider` property
Expand Down Expand Up @@ -291,7 +296,9 @@ 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.2.0-rc.25...HEAD
[Unreleased]: https://github.com/distributed-lab/web-kit/compare/0.3.0-rc.0...HEAD
[0.3.0-rc.0]: https://github.com/distributed-lab/web-kit/compare/0.2.0...0.3.0-rc.0
[0.2.0]: https://github.com/distributed-lab/web-kit/compare/0.2.0-rc.25...0.2.0
[0.2.0-rc.25]: https://github.com/distributed-lab/web-kit/compare/0.2.0-rc.24...0.2.0-rc.25
[0.2.0-rc.24]: https://github.com/distributed-lab/web-kit/compare/0.2.0-rc.23...0.2.0-rc.24
[0.2.0-rc.23]: https://github.com/distributed-lab/web-kit/compare/0.2.0-rc.22...0.2.0-rc.23
Expand Down
2 changes: 1 addition & 1 deletion packages/fetcher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@distributedlab/fetcher",
"version": "0.2.0-rc.25",
"version": "0.2.0",
"description": "Fetch API wrapper with the extended functionality and simple interface",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/jac/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@distributedlab/jac",
"version": "0.2.0-rc.25",
"version": "0.2.0",
"description": "A library for constructing JSON-API compliant requests and responses",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/reactivity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@distributedlab/reactivity",
"version": "0.2.0-rc.25",
"version": "0.2.0",
"description": "Implementation of the reactivity connections to propagate changes between objects",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@distributedlab/tools",
"version": "0.2.0-rc.25",
"version": "0.2.0",
"description": "Collection of common utility functions and classes",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/w3p/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@distributedlab/w3p",
"version": "0.2.0-rc.25",
"version": "0.2.0",
"description": "Wrapper for Web3 Providers",
"repository": {
"type": "git",
Expand Down

0 comments on commit 54bb5e7

Please sign in to comment.