Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

Commit

Permalink
chore: Bump version due to npm publish issue
Browse files Browse the repository at this point in the history
  • Loading branch information
obany committed Oct 12, 2021
1 parent 50b4495 commit d9c70cd
Show file tree
Hide file tree
Showing 46 changed files with 6,615 additions and 1,285 deletions.
7,536 changes: 6,404 additions & 1,132 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@iota/workspaces",
"description": "IOTA JavaScript Library",
"version": "1.8.0",
"version": "1.8.1",
"keywords": [
"iota"
],
Expand Down
4 changes: 4 additions & 0 deletions packages/crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.8.1

* Bump version due to npm publish issue <https://status.npmjs.org/incidents/wy4002vc8ryc>

## v1.8.0

* Separate crypto into separate package from main iota.js
25 changes: 12 additions & 13 deletions packages/crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@iota/crypto.js",
"description": "IOTA JavaScript Cryptography Library",
"version": "1.8.0",
"version": "1.8.1",
"keywords": [
"iota",
"client"
Expand All @@ -11,13 +11,13 @@
],
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/iota.js.git"
"url": "https://github.com/iotaledger/iota.js.git",
"directory": "packages/crypto"
},
"license": "Apache-2.0",
"dependencies": {
"big-integer": "^1.6.49",
"node-fetch": "2.6.5",
"@iota/util.js": "^1.8.0"
"@iota/util.js": "^1.8.1"
},
"scripts": {
"build-clean": "rimraf ./es/* ./typings/*",
Expand Down Expand Up @@ -50,23 +50,22 @@
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-replace": "^3.0.0",
"@types/jest": "^27.0.2",
"@types/node-fetch": "2.5.12",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.1.1",
"eslint-plugin-unicorn": "^36.0.0",
"eslint": "7.32.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsdoc": "36.1.1",
"eslint-plugin-unicorn": "36.0.0",
"jest": "^27.2.5",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-node": "^10.3.0",
"typedoc": "^0.22.5",
"typedoc-plugin-markdown": "^3.11.3",
"typescript": "^4.4.3"
Expand Down
4 changes: 4 additions & 0 deletions packages/iota/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.8.1

* Bump version due to npm publish issue <https://status.npmjs.org/incidents/wy4002vc8ryc>

## v1.8.0

* Separates crypto and utils into separate packages, this is a breaking change as some imports will need to change to point to the correct package.
Expand Down
3 changes: 2 additions & 1 deletion packages/iota/dist/cjs/index-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -2755,8 +2755,9 @@
}
/**
* LN3 Const see https://oeis.org/A002391.
* 1.098612288668109691395245236922525704647490557822749451734694333 .
*/
PowHelper.LN3 = 1.098612288668109691395245236922525704647490557822749451734694333;
PowHelper.LN3 = 1.0986122886681098;

// Copyright 2020 IOTA Stiftung
/**
Expand Down
3 changes: 2 additions & 1 deletion packages/iota/dist/cjs/index-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -2764,8 +2764,9 @@
}
/**
* LN3 Const see https://oeis.org/A002391.
* 1.098612288668109691395245236922525704647490557822749451734694333 .
*/
PowHelper.LN3 = 1.098612288668109691395245236922525704647490557822749451734694333;
PowHelper.LN3 = 1.0986122886681098;

// Copyright 2020 IOTA Stiftung
/**
Expand Down
3 changes: 2 additions & 1 deletion packages/iota/dist/esm/utils/powHelper.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,6 @@ export class PowHelper {
}
/**
* LN3 Const see https://oeis.org/A002391.
* 1.098612288668109691395245236922525704647490557822749451734694333 .
*/
PowHelper.LN3 = 1.098612288668109691395245236922525704647490557822749451734694333;
PowHelper.LN3 = 1.0986122886681098;
3 changes: 2 additions & 1 deletion packages/iota/docs/classes/PowHelper.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ Helper methods for POW.

### LN3

`Static` `Readonly` **LN3**: `number` = `1.098612288668109691395245236922525704647490557822749451734694333`
`Static` `Readonly` **LN3**: `number` = `1.0986122886681098`

LN3 Const see https://oeis.org/A002391.
1.098612288668109691395245236922525704647490557822749451734694333 .

## Methods

Expand Down
5 changes: 3 additions & 2 deletions packages/iota/es/utils/powHelper.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions packages/iota/examples/peers/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions packages/iota/examples/pow/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions packages/iota/examples/simple/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions packages/iota/examples/transaction/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 13 additions & 12 deletions packages/iota/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@iota/iota.js",
"description": "IOTA JavaScript Library",
"version": "1.8.0",
"version": "1.8.1",
"keywords": [
"iota",
"client"
Expand All @@ -11,14 +11,15 @@
],
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/iota.js.git"
"url": "https://github.com/iotaledger/iota.js.git",
"directory": "packages/iota"
},
"license": "Apache-2.0",
"dependencies": {
"big-integer": "^1.6.49",
"node-fetch": "2.6.5",
"@iota/util.js": "^1.8.0",
"@iota/crypto.js": "^1.8.0"
"@iota/util.js": "^1.8.1",
"@iota/crypto.js": "^1.8.1"
},
"scripts": {
"build-clean": "rimraf ./es/* ./typings/*",
Expand Down Expand Up @@ -52,22 +53,22 @@
"@rollup/plugin-replace": "^3.0.0",
"@types/jest": "^27.0.2",
"@types/node-fetch": "2.5.12",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.1.1",
"eslint-plugin-unicorn": "^36.0.0",
"eslint": "7.32.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsdoc": "36.1.1",
"eslint-plugin-unicorn": "36.0.0",
"jest": "^27.2.5",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-node": "^10.3.0",
"typedoc": "^0.22.5",
"typedoc-plugin-markdown": "^3.11.3",
"typescript": "^4.4.3"
Expand Down
3 changes: 2 additions & 1 deletion packages/iota/src/utils/powHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ import { B1T6 } from "../encoding/b1t6";
export class PowHelper {
/**
* LN3 Const see https://oeis.org/A002391.
* 1.098612288668109691395245236922525704647490557822749451734694333 .
*/
public static readonly LN3: number = 1.098612288668109691395245236922525704647490557822749451734694333;
public static readonly LN3: number = 1.0986122886681098;

/**
* Perform the score calculation.
Expand Down
1 change: 1 addition & 0 deletions packages/iota/typings/utils/powHelper.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { BigInteger } from "big-integer";
export declare class PowHelper {
/**
* LN3 Const see https://oeis.org/A002391.
* 1.098612288668109691395245236922525704647490557822749451734694333 .
*/
static readonly LN3: number;
/**
Expand Down
9 changes: 9 additions & 0 deletions packages/mqtt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

## v1.8.1

* Bump version due to npm publish issue <https://status.npmjs.org/incidents/wy4002vc8ryc>

## v1.8.0

* Align package versions
Loading

0 comments on commit d9c70cd

Please sign in to comment.