Skip to content

Commit

Permalink
[sdk&cli] bump version @1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ochaloup committed Jun 30, 2024
1 parent ce6b581 commit 3371635
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 10 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

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.5.3](https://github.com/marinade-finance/validator-bonds/compare/v1.5.2...v1.5.3) (2024-06-30)

### Fixes

* `show-bond` fix on SOL units formatting

## TS CLI&SDK [1.5.2](https://github.com/marinade-finance/validator-bonds/compare/v1.5.1...v1.5.2) (2024-06-27)

### Updates

* `init-bond` and `configure-bond` `--max-stake-wanted` works with lamports (not SOLs)

## TS CLI&SDK [1.5.1](https://github.com/marinade-finance/validator-bonds/compare/v1.5.0...v1.5.1) (2024-06-17)

### Updates

* `show-bond` to simplify printing vote account data
* `init-withdraw-request` to limit the creation of the withdraw request to the minimal size of the stake account

## contract release v1.5.0 (2024-06-14)

* address: [`vBoNdEvzMrSai7is21XgVYik65mqtaKXuSdMBJ1xkW4`](https://explorer.solana.com/address/vBoNdEvzMrSai7is21XgVYik65mqtaKXuSdMBJ1xkW4)
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.5.2
1.5.3
```

To get info on available commands
Expand Down Expand Up @@ -439,7 +439,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.5.2
> +-- @marinade.finance/validator-bonds-cli@1.5.3
> ...
# In this case, the `bin` folder is located at /usr/bin
```
Expand All @@ -465,7 +465,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.5.2
> `-- @marinade.finance/validator-bonds-cli@1.5.3
```
To execute the installed packages from any location,
Expand Down Expand Up @@ -616,7 +616,7 @@ Commands:
# Get npm global installation folder
npm list -g
> ~/.local/share/npm/lib
> `-- @marinade.finance/validator-bonds-cli@1.5.2
> `-- @marinade.finance/validator-bonds-cli@1.5.3
# 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.5.2",
"version": "1.5.3",
"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.5.2",
"@marinade.finance/validator-bonds-sdk": " ^1.5.3",
"@coral-xyz/anchor": "^0.29.0",
"@solana/web3.js": "^1.93.0",
"@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 @@ -20,7 +20,7 @@ logger.level = 'debug'
const program = new Command()

program
.version('1.5.2')
.version('1.5.3')
.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.5.2",
"version": "1.5.3",
"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.5.2",
"version": "1.5.3",
"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.5.2",
"@marinade.finance/validator-bonds-sdk": "workspace: ^1.5.3",
"@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 3371635

Please sign in to comment.