Skip to content

Commit

Permalink
[cli&sdk] bump version 1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ochaloup committed May 6, 2024
1 parent f67f916 commit da50937
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.


## TS CLI&SDK [1.3.4](https://github.com/marinade-finance/validator-bonds/compare/v1.3.3...v1.3.4) (2024-05-06)
## TS CLI&SDK [1.3.5](https://github.com/marinade-finance/validator-bonds/compare/v1.3.3...v1.3.5) (2024-05-06)

### Fixes

* CLI: fixing withdraw claim command that was wrongly filtering stake accounts possible for claiming
* fixing issue with CLI bin publishing from 1.3.4


## TS CLI&SDK [1.3.3](https://github.com/marinade-finance/validator-bonds/compare/v1.3.2...v1.3.3) (2024-04-26)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"lint": "pnpm lint:cargo && pnpm lint:ts",
"publish:sdk": "pnpm build && pnpm publish build/packages/validator-bonds-sdk",
"publish:cli": "pnpm build && pnpm publish build/packages/validator-bonds-cli",
"publish:all": "pnpm publish -r --filter '@marinade.finance/validator-bonds*'"
"publish:all": "pnpm publish:sdk && pnpm publish:cli"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/validator-bonds-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ added 165 packages in 35s
# to verify installed version
validator-bonds --version
1.3.4
1.3.5
```

To get info on available commands
Expand Down Expand Up @@ -377,7 +377,7 @@ To check where NPM packages are and will be installed:
# Get npm global installation folder
npm list -g
> /usr/lib
> +-- @marinade.finance/validator-bonds-cli@1.3.4
> +-- @marinade.finance/validator-bonds-cli@1.3.5
> ...
# In this case, the `bin` folder is located at /usr/bin
```
Expand All @@ -403,7 +403,7 @@ With this configuration, NPM packages will be installed under the `prefix` direc
npm i -g @marinade.finance/validator-bonds-cli@latest
npm list -g
> ~/.local/share/npm/lib
> `-- @marinade.finance/validator-bonds-cli@1.3.4
> `-- @marinade.finance/validator-bonds-cli@1.3.5
```
To execute the installed packages from any location,
Expand Down Expand Up @@ -553,7 +553,7 @@ Commands:
# Get npm global installation folder
npm list -g
> ~/.local/share/npm/lib
> `-- @marinade.finance/validator-bonds-cli@1.3.4
> `-- @marinade.finance/validator-bonds-cli@1.3.5
# In this case, the 'bin' folder is located at ~/.local/share/npm/bin
# Get validator-bonds binary folder
Expand Down
4 changes: 2 additions & 2 deletions packages/validator-bonds-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@marinade.finance/validator-bonds-cli",
"version": "1.3.4",
"version": "1.3.5",
"description": "CLI of the validator bonds contract",
"repository": {
"type": "git",
Expand All @@ -24,7 +24,7 @@
],
"main": "src/index",
"dependencies": {
"@marinade.finance/validator-bonds-sdk": "workspace:^1.3.4",
"@marinade.finance/validator-bonds-sdk": "^1.3.5",
"@coral-xyz/anchor": "^0.29.0",
"@solana/web3.js": "^1.91.1",
"@marinade.finance/ledger-utils": "^3.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/validator-bonds-cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const logger: Logger = configureLogger()
const program = new Command()

program
.version('1.3.4')
.version('1.3.5')
.allowExcessArguments(false)
.configureHelp({ showGlobalOptions: true })
.option(
Expand Down
2 changes: 1 addition & 1 deletion packages/validator-bonds-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@marinade.finance/validator-bonds-sdk",
"version": "1.3.4",
"version": "1.3.5",
"description": "SDK of the validator bonds contract",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions settlement-pipelines/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@marinade.finance/settlement-pipelines",
"version": "1.3.4",
"version": "1.3.5",
"description": "Tests for settlement pipelines CLI",
"repository": {
"type": "git",
Expand All @@ -17,7 +17,7 @@
"author": "Marinade.Finance",
"license": "ISC",
"devDependencies": {
"@marinade.finance/validator-bonds-sdk": "workspace:^1.3.4",
"@marinade.finance/validator-bonds-sdk": "^1.3.5",
"@coral-xyz/anchor": "^0.29.0",
"@solana/web3.js": "^1.91.1",
"@marinade.finance/ledger-utils": "^3.0.1",
Expand Down

0 comments on commit da50937

Please sign in to comment.