Skip to content

Commit

Permalink
bump the package version to v0.3.0-rc4 (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarvalabs-harshrastogi authored Apr 16, 2024
1 parent 6ae8b61 commit e602b38
Show file tree
Hide file tree
Showing 38 changed files with 73 additions and 72 deletions.
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
# built documents.
#
# The short X.Y version.
version = u'v0.3.0-rc3'
version = u'v0.3.0-rc4'
# The full version, including alpha/beta/rc tags.
release = u'v0.3.0-rc3'
release = u'v0.3.0-rc4'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/source/constants.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ js-moi-sdk package.
console.log(moi.VERSION)
>> 0.3.0-rc3
>> 0.3.0-rc4
MOI Derivation Path
-------------------
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "moi",
"version": "0.3.0-rc3",
"version": "0.3.0-rc4",
"description": "JavaScript library to interact with MOI Protocol via RPC API",
"private": true,
"main": "packages/js-moi/lib.cjs/index.js",
Expand Down
10 changes: 5 additions & 5 deletions packages/js-moi-bip39/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-moi-bip39",
"version": "0.3.0-rc3",
"version": "0.3.0-rc4",
"description": "Bitcoin BIP39 package for deterministic key generation using mnemonic code",
"main": "./lib.cjs/index.js",
"module": "./lib.esm/index.js",
Expand All @@ -24,10 +24,10 @@
"author": "Sarva Labs Inc. & MOI Protocol Developers",
"license": "Apache-2.0 OR MIT",
"dependencies": {
"js-moi-hdnode": "^0.3.0-rc3",
"js-moi-signer": "^0.3.0-rc3",
"js-moi-constants": "^0.3.0-rc3",
"js-moi-utils": "^0.3.0-rc3",
"js-moi-hdnode": "^0.3.0-rc4",
"js-moi-signer": "^0.3.0-rc4",
"js-moi-constants": "^0.3.0-rc4",
"js-moi-utils": "^0.3.0-rc4",
"buffer": "^6.0.3",
"@noble/hashes": "^1.1.5"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/js-moi-constants/lib.cjs/version.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export declare const VERSION = "0.3.0-rc3";
export declare const VERSION = "0.3.0-rc4";
//# sourceMappingURL=version.d.ts.map
4 changes: 2 additions & 2 deletions packages/js-moi-constants/lib.cjs/version.js

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

2 changes: 1 addition & 1 deletion packages/js-moi-constants/lib.esm/version.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export declare const VERSION = "0.3.0-rc3";
export declare const VERSION = "0.3.0-rc4";
//# sourceMappingURL=version.d.ts.map
2 changes: 1 addition & 1 deletion packages/js-moi-constants/lib.esm/version.js

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

2 changes: 1 addition & 1 deletion packages/js-moi-constants/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-moi-constants",
"version": "0.3.0-rc3",
"version": "0.3.0-rc4",
"description": "Collection of constant variables used in js-moi-sdk",
"main": "./lib.cjs/index.js",
"module": "./lib.esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/js-moi-constants/src.ts/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = "0.3.0-rc3";
export const VERSION = "0.3.0-rc4";
4 changes: 2 additions & 2 deletions packages/js-moi-hdnode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-moi-hdnode",
"version": "0.3.0-rc3",
"version": "0.3.0-rc4",
"description": "BIP32 HD Node for cryptocurrency key management.",
"main": "./lib.cjs/index.js",
"module": "./lib.esm/index.js",
Expand Down Expand Up @@ -28,7 +28,7 @@
"buffer": "^6.0.3",
"crypto": "npm:crypto-browserify",
"hdkey": "^2.1.0",
"js-moi-utils": "^0.3.0-rc3",
"js-moi-utils": "^0.3.0-rc4",
"process": "^0.11.10",
"secp256k1": "^5.0.0",
"stream": "npm:stream-browserify"
Expand Down
10 changes: 5 additions & 5 deletions packages/js-moi-logic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-moi-logic",
"version": "0.3.0-rc3",
"version": "0.3.0-rc4",
"description": "Module to interact with MOI Logic Objects.",
"main": "./lib.cjs/index.js",
"module": "./lib.esm/index.js",
Expand All @@ -23,10 +23,10 @@
"author": "Sarva Labs Inc. & MOI Protocol Developers",
"license": "Apache-2.0 OR MIT",
"dependencies": {
"js-moi-manifest": "^0.3.0-rc3",
"js-moi-utils": "^0.3.0-rc3",
"js-moi-providers": "^0.3.0-rc3",
"js-moi-signer": "^0.3.0-rc3",
"js-moi-manifest": "^0.3.0-rc4",
"js-moi-utils": "^0.3.0-rc4",
"js-moi-providers": "^0.3.0-rc4",
"js-moi-signer": "^0.3.0-rc4",
"@noble/hashes": "^1.1.5",
"buffer": "^6.0.3"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/js-moi-manifest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-moi-manifest",
"version": "0.3.0-rc3",
"version": "0.3.0-rc4",
"description": "Module to encode and decode MOI Logic Engine input and output.",
"main": "./lib.cjs/index.js",
"module": "./lib.esm/index.js",
Expand All @@ -23,7 +23,7 @@
"author": "Sarva Labs Inc. & MOI Protocol Developers",
"license": "Apache-2.0 OR MIT",
"dependencies": {
"js-moi-utils": "^0.3.0-rc3",
"js-moi-utils": "^0.3.0-rc4",
"js-polo": "^0.1.3"
}
}
2 changes: 1 addition & 1 deletion packages/js-moi-providers/lib.cjs/abstract-provider.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export declare abstract class AbstractProvider {
abstract getAccountMetaInfo(address: string, options?: Options): Promise<AccountMetaInfo>;
abstract getLogicIds(address: string, options?: Options): Promise<string[]>;
abstract getRegistry(address: string, options?: Options): Promise<Registry>;
abstract getSyncStatus(address: string): Promise<SyncStatus>;
abstract getSyncStatus(address?: string): Promise<SyncStatus>;
abstract getContentFrom(address: string): Promise<ContentFrom>;
abstract getWaitTime(address: string): Promise<number | bigint>;
abstract call(ixObject: CallorEstimateIxObject, options?: CallorEstimateOptions): Promise<InteractionCallResponse>;
Expand Down

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

4 changes: 2 additions & 2 deletions packages/js-moi-providers/lib.cjs/base-provider.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,11 +234,11 @@ export declare class BaseProvider extends AbstractProvider {
/**
* Retrieves the synchronization status for a specific account.
*
* @param {string} address - The address for which to retrieve the synchronization status.
* @param {string | undefined} address - The address for which to retrieve the synchronization status.
* @returns {Promise<SyncStatus>} A Promise that resolves to the synchronization status.
* @throws {Error} if there is an error executing the RPC call.
*/
getSyncStatus(address: string): Promise<SyncStatus>;
getSyncStatus(address?: string): Promise<SyncStatus>;
/**
* Handles the interaction without modifying the account's current state.
*
Expand Down
Loading

0 comments on commit e602b38

Please sign in to comment.