Skip to content

Commit

Permalink
[cli&sdk] bump version to 2.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ochaloup committed Jan 13, 2025
1 parent da6bd05 commit 2b2657b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,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 [2.0.6](https://github.com/marinade-finance/validator-bonds/compare/v2.0.5...v2.0.6) (2025-01-13)

### Fixes

* cli: `claim-withdraw-request` to work correctly with `--stake-account`

## TS CLI&SDK [2.0.5](https://github.com/marinade-finance/validator-bonds/compare/v2.0.4...v2.0.5) (2025-01-09)

### Updates
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
2.0.5
2.0.6
```

To get info on available commands
Expand Down Expand Up @@ -665,7 +665,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@2.0.5
> +-- @marinade.finance/validator-bonds-cli@2.0.6
> ...
# In this case, the `bin` folder is located at /usr/bin
```
Expand All @@ -691,7 +691,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@2.0.5
> `-- @marinade.finance/validator-bonds-cli@2.0.6
```

To execute the installed packages from any location,
Expand Down Expand Up @@ -850,7 +850,7 @@ Commands:
# Get npm global installation folder
npm list -g
> ~/.local/share/npm/lib
> `-- @marinade.finance/validator-bonds-cli@2.0.5
> `-- @marinade.finance/validator-bonds-cli@2.0.6
# 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": "2.0.5",
"version": "2.0.6",
"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": " ^2.0.5",
"@marinade.finance/validator-bonds-sdk": " ^2.0.6",
"@coral-xyz/anchor": "^0.29.0",
"@marinade.finance/anchor-common": "^2.4.9",
"@marinade.finance/cli-common": "^2.4.9",
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 @@ -20,7 +20,7 @@ logger.level = 'debug'
const program = new Command()

program
.version('2.0.5')
.version('2.0.6')
.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": "2.0.5",
"version": "2.0.6",
"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": "2.0.5",
"version": "2.0.6",
"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: ^2.0.5",
"@marinade.finance/validator-bonds-sdk": "workspace: ^2.0.6",
"@coral-xyz/anchor": "^0.29.0",
"@solana/web3.js": "^1.93.0",
"@marinade.finance/ledger-utils": "^3.0.1",
Expand Down

0 comments on commit 2b2657b

Please sign in to comment.