Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjohn1028 committed Feb 28, 2024
1 parent f3d1b6c commit 6198734
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

39 changes: 38 additions & 1 deletion packages/token-staking/package.json
Original file line number Diff line number Diff line change
@@ -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"}}
{
"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"
}
}
2 changes: 1 addition & 1 deletion packages/token-staking/src/idl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ type Mutable<T> = {
};

export const _SplTokenStakingIDL = {
version: "1.1.1",
version: "1.1.2",
name: "spl_token_staking",
instructions: [
{
Expand Down
2 changes: 1 addition & 1 deletion programs/spl-token-staking/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-token-staking"
version = "1.1.1"
version = "1.1.2"
description = "Created with Anchor"
edition = "2021"

Expand Down

0 comments on commit 6198734

Please sign in to comment.