From 61987346861b0d6e3f22550228608652628b45dc Mon Sep 17 00:00:00 2001 From: Tommy Johnson Date: Wed, 28 Feb 2024 06:28:10 -0500 Subject: [PATCH] bump versions --- Cargo.lock | 2 +- packages/token-staking/package.json | 39 ++++++++++++++++++++++++++- packages/token-staking/src/idl.ts | 2 +- programs/spl-token-staking/Cargo.toml | 2 +- 4 files changed, 41 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c447488..93c7cab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2179,7 +2179,7 @@ dependencies = [ [[package]] name = "spl-token-staking" -version = "1.1.1" +version = "1.1.2" dependencies = [ "anchor-lang", "anchor-spl", diff --git a/packages/token-staking/package.json b/packages/token-staking/package.json index 7d95272..41ae111 100644 --- a/packages/token-staking/package.json +++ b/packages/token-staking/package.json @@ -1 +1,38 @@ -{"name":"@mithraic-labs/token-staking","version":"1.1.1","description":"SPL Token staking TS package","main":"src/index.ts","module":"src/index.ts","files":["dist"],"publishConfig":{"access":"public","registry":"https://registry.npmjs.org/"},"license":"MIT","scripts":{"build":"tsc","build:package":"yarn clean && rollup -c","clean":"rm -rf ./dist","prepublishOnly":"node ./scripts/preparePkgForRegistry.js && rollup -c","postpublish":"node ./scripts/rollbackPkg.js","test":"echo \"Error: no test specified\" && exit 1","type-check":"tsc --noEmit"},"dependencies":{"@coral-xyz/anchor":"^0.28.0","@coral-xyz/spl-token":"^0.28.0","@solana/spl-token":"^0.4.0","bs58":"^5.0.0","lodash.chunk":"^4.2.0"},"devDependencies":{"@types/bs58":"^4.0.4","@types/lodash.chunk":"^4.2.9","rollup":"^3.29.0","rollup-plugin-typescript2":"^0.35.0","typescript":"^5.2.2"}} \ No newline at end of file +{ + "name": "@mithraic-labs/token-staking", + "version": "1.1.2", + "description": "SPL Token staking TS package", + "main": "src/index.ts", + "module": "src/index.ts", + "files": [ + "dist" + ], + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org/" + }, + "license": "MIT", + "scripts": { + "build": "tsc", + "build:package": "yarn clean && rollup -c", + "clean": "rm -rf ./dist", + "prepublishOnly": "node ./scripts/preparePkgForRegistry.js && rollup -c", + "postpublish": "node ./scripts/rollbackPkg.js", + "test": "echo \"Error: no test specified\" && exit 1", + "type-check": "tsc --noEmit" + }, + "dependencies": { + "@coral-xyz/anchor": "^0.28.0", + "@coral-xyz/spl-token": "^0.28.0", + "@solana/spl-token": "^0.4.0", + "bs58": "^5.0.0", + "lodash.chunk": "^4.2.0" + }, + "devDependencies": { + "@types/bs58": "^4.0.4", + "@types/lodash.chunk": "^4.2.9", + "rollup": "^3.29.0", + "rollup-plugin-typescript2": "^0.35.0", + "typescript": "^5.2.2" + } +} diff --git a/packages/token-staking/src/idl.ts b/packages/token-staking/src/idl.ts index 05447cb..ca1e197 100644 --- a/packages/token-staking/src/idl.ts +++ b/packages/token-staking/src/idl.ts @@ -3,7 +3,7 @@ type Mutable = { }; export const _SplTokenStakingIDL = { - version: "1.1.1", + version: "1.1.2", name: "spl_token_staking", instructions: [ { diff --git a/programs/spl-token-staking/Cargo.toml b/programs/spl-token-staking/Cargo.toml index e1510f4..db5360a 100644 --- a/programs/spl-token-staking/Cargo.toml +++ b/programs/spl-token-staking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spl-token-staking" -version = "1.1.1" +version = "1.1.2" description = "Created with Anchor" edition = "2021"