Skip to content

Commit

Permalink
[CI Skip] release/stable 1.19.1
Browse files Browse the repository at this point in the history
skip-checks: true
  • Loading branch information
actions-user committed Jun 16, 2020
1 parent ad6b828 commit ddf67d5
Show file tree
Hide file tree
Showing 13 changed files with 76 additions and 79 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"packages": [
"packages/*"
],
"version": "1.19.0"
"version": "1.19.1"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
"@vuepress/plugin-search": "^1.5.2",
"copyfiles": "^2.3.0"
},
"version": "1.19.0"
"version": "1.19.1"
}
8 changes: 4 additions & 4 deletions packages/api-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/api-contract",
"version": "1.19.0",
"version": "1.19.1",
"description": "Interfaces for interacting with contracts and contract ABIs",
"main": "index.js",
"keywords": [
Expand All @@ -27,9 +27,9 @@
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-contract#readme",
"dependencies": {
"@babel/runtime": "^7.10.2",
"@polkadot/api": "1.19.0",
"@polkadot/rpc-core": "1.19.0",
"@polkadot/types": "1.19.0",
"@polkadot/api": "1.19.1",
"@polkadot/rpc-core": "1.19.1",
"@polkadot/types": "1.19.1",
"@polkadot/util": "^2.14.1",
"bn.js": "^5.1.2",
"rxjs": "^6.5.5"
Expand Down
10 changes: 5 additions & 5 deletions packages/api-derive/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/api-derive",
"version": "1.19.0",
"version": "1.19.1",
"description": "Common functions used across Polkadot, derived from RPC calls and storage queries.",
"main": "index.js",
"keywords": [
Expand Down Expand Up @@ -28,10 +28,10 @@
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-derive#readme",
"dependencies": {
"@babel/runtime": "^7.10.2",
"@polkadot/api": "1.19.0",
"@polkadot/rpc-core": "1.19.0",
"@polkadot/rpc-provider": "1.19.0",
"@polkadot/types": "1.19.0",
"@polkadot/api": "1.19.1",
"@polkadot/rpc-core": "1.19.1",
"@polkadot/rpc-provider": "1.19.1",
"@polkadot/types": "1.19.1",
"@polkadot/util": "^2.14.1",
"@polkadot/util-crypto": "^2.14.1",
"bn.js": "^5.1.2",
Expand Down
14 changes: 7 additions & 7 deletions packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/api",
"version": "1.19.0",
"version": "1.19.1",
"description": "Promise and RxJS wrappers around the Polkadot JS RPC",
"main": "index.js",
"keywords": [
Expand All @@ -27,13 +27,13 @@
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api#readme",
"dependencies": {
"@babel/runtime": "^7.10.2",
"@polkadot/api-derive": "1.19.0",
"@polkadot/api-derive": "1.19.1",
"@polkadot/keyring": "^2.14.1",
"@polkadot/metadata": "1.19.0",
"@polkadot/rpc-core": "1.19.0",
"@polkadot/rpc-provider": "1.19.0",
"@polkadot/types": "1.19.0",
"@polkadot/types-known": "1.19.0",
"@polkadot/metadata": "1.19.1",
"@polkadot/rpc-core": "1.19.1",
"@polkadot/rpc-provider": "1.19.1",
"@polkadot/types": "1.19.1",
"@polkadot/types-known": "1.19.1",
"@polkadot/util": "^2.14.1",
"@polkadot/util-crypto": "^2.14.1",
"bn.js": "^5.1.2",
Expand Down
15 changes: 6 additions & 9 deletions packages/api/src/augment/tx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1285,8 +1285,7 @@ declare module '@polkadot/api/types/submittable' {
* Register approval for a dispatch to be made from a deterministic composite account if
* approved by a total of `threshold - 1` of `other_signatories`.
*
* If there are enough, then dispatch the call. Calls must each fulfil the `IsCallable`
* filter.
* If there are enough, then dispatch the call.
*
* Payment: `DepositBase` will be reserved if this is the first approval, plus
* `threshold` times `DepositFactor`. It is returned once this dispatch happens or
Expand Down Expand Up @@ -3089,7 +3088,8 @@ declare module '@polkadot/api/types/submittable' {
/**
* Send a call through an indexed pseudonym of the sender.
*
* Calls must each fulfil the `IsCallable` filter; it is not cleared before.
* Filter from origin are passed along. The call will be dispatched with an origin which
* use the same filter as the origin of this call.
*
* NOTE: If you need to ensure that any account-based filtering is not honored (i.e.
* because you expect `proxy` to have been used prior in the call stack and you do not want
Expand All @@ -3106,9 +3106,6 @@ declare module '@polkadot/api/types/submittable' {
/**
* Send a call through an indexed pseudonym of the sender.
*
* The call must fulfil only the pre-cleared `IsCallable` filter (i.e. only the level of
* filtering that remains after calling `take()`).
*
* NOTE: If you need to ensure that any account-based filtering is honored (i.e. because
* you expect `proxy` to have been used prior in the call stack and you want it to apply to
* any sub-accounts), then use `as_limited_sub` instead.
Expand All @@ -3124,13 +3121,13 @@ declare module '@polkadot/api/types/submittable' {
/**
* Send a batch of dispatch calls.
*
* This will execute until the first one fails and then stop. Calls must fulfil the
* `IsCallable` filter unless the origin is `Root`.
*
* May be called from any origin.
*
* - `calls`: The calls to be dispatched from the same origin.
*
* If origin is root then call are dispatch without checking origin filter. (This includes
* bypassing `frame_system::Trait::BaseCallFilter`).
*
* # <weight>
* - Base weight: 14.39 + .987 * c µs
* - Plus the sum of the weights of the `calls`.
Expand Down
6 changes: 3 additions & 3 deletions packages/metadata/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/metadata",
"version": "1.19.0",
"version": "1.19.1",
"description": "Helpers to extract information from runtime metadata",
"main": "index.js",
"publishConfig": {
Expand All @@ -27,8 +27,8 @@
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/type-metadata#readme",
"dependencies": {
"@babel/runtime": "^7.10.2",
"@polkadot/types": "1.19.0",
"@polkadot/types-known": "1.19.0",
"@polkadot/types": "1.19.1",
"@polkadot/types-known": "1.19.1",
"@polkadot/util": "^2.14.1",
"@polkadot/util-crypto": "^2.14.1",
"bn.js": "^5.1.2"
Expand Down
8 changes: 4 additions & 4 deletions packages/rpc-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/rpc-core",
"version": "1.19.0",
"version": "1.19.1",
"description": "A JavaScript wrapper for the Polkadot JsonRPC interface",
"main": "index.js",
"keywords": [
Expand All @@ -27,9 +27,9 @@
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-core#readme",
"dependencies": {
"@babel/runtime": "^7.10.2",
"@polkadot/metadata": "1.19.0",
"@polkadot/rpc-provider": "1.19.0",
"@polkadot/types": "1.19.0",
"@polkadot/metadata": "1.19.1",
"@polkadot/rpc-provider": "1.19.1",
"@polkadot/types": "1.19.1",
"@polkadot/util": "^2.14.1",
"memoizee": "^0.4.14",
"rxjs": "^6.5.5"
Expand Down
6 changes: 3 additions & 3 deletions packages/rpc-provider/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/rpc-provider",
"version": "1.19.0",
"version": "1.19.1",
"description": "Transport providers for the API",
"main": "index.js",
"keywords": [
Expand All @@ -27,8 +27,8 @@
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-provider#readme",
"dependencies": {
"@babel/runtime": "^7.10.2",
"@polkadot/metadata": "1.19.0",
"@polkadot/types": "1.19.0",
"@polkadot/metadata": "1.19.1",
"@polkadot/types": "1.19.1",
"@polkadot/util": "^2.14.1",
"@polkadot/util-crypto": "^2.14.1",
"bn.js": "^5.1.2",
Expand Down
10 changes: 5 additions & 5 deletions packages/typegen/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/typegen",
"version": "1.19.0",
"version": "1.19.1",
"description": "Type generation scripts",
"main": "index.js",
"bin": {
Expand Down Expand Up @@ -36,10 +36,10 @@
"@babel/core": "^7.10.2",
"@babel/register": "^7.10.1",
"@babel/runtime": "^7.10.2",
"@polkadot/api": "1.19.0",
"@polkadot/metadata": "1.19.0",
"@polkadot/rpc-provider": "1.19.0",
"@polkadot/types": "1.19.0",
"@polkadot/api": "1.19.1",
"@polkadot/metadata": "1.19.1",
"@polkadot/rpc-provider": "1.19.1",
"@polkadot/types": "1.19.1",
"@polkadot/util": "^2.14.1",
"handlebars": "^4.7.6",
"websocket": "^1.0.31",
Expand Down
4 changes: 2 additions & 2 deletions packages/types-known/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/types-known",
"version": "1.19.0",
"version": "1.19.1",
"description": "A JavaScript wrapper for the Polkadot JsonRPC interface",
"main": "index.js",
"keywords": [
Expand All @@ -27,7 +27,7 @@
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/types-known#readme",
"dependencies": {
"@babel/runtime": "^7.10.2",
"@polkadot/types": "1.19.0",
"@polkadot/types": "1.19.1",
"@polkadot/util": "^2.14.1",
"bn.js": "^5.1.2"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/types",
"version": "1.19.0",
"version": "1.19.1",
"description": "Implementation of the Parity codec",
"main": "index.js",
"keywords": [
Expand All @@ -27,7 +27,7 @@
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/types#readme",
"dependencies": {
"@babel/runtime": "^7.10.2",
"@polkadot/metadata": "1.19.0",
"@polkadot/metadata": "1.19.1",
"@polkadot/util": "^2.14.1",
"@polkadot/util-crypto": "^2.14.1",
"@types/bn.js": "^4.11.6",
Expand Down
Loading

0 comments on commit ddf67d5

Please sign in to comment.