Skip to content

Commit

Permalink
[version] bump CLI @2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ochaloup committed Aug 5, 2024
1 parent feea304 commit 2721591
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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.1](https://github.com/marinade-finance/validator-bonds/compare/v2.0.0...v2.0.1) (2024-08-05)

### Updates

* `fund-bond` to show information and not an error when funding stake account is already funded
* `show-bond` to accept stake account address and showing delegated voter
as base for PDA bond account address
* `show-settlement` to better format merkle tree root data


## TS CLI&SDK [2.0.0](https://github.com/marinade-finance/validator-bonds/compare/v1.5.3...v2.0.0) (2024-07-11)

### Breaking
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.0
2.0.1
```

To get info on available commands
Expand Down Expand Up @@ -445,7 +445,7 @@ To check where NPM packages are and will be installed:
# Get npm global installation folder
npm list -g
> /usr/lib
> +-- @marinade.finance/[email protected].0
> +-- @marinade.finance/[email protected].1
> ...
# In this case, the `bin` folder is located at /usr/bin
```
Expand All @@ -471,7 +471,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/[email protected].0
> `-- @marinade.finance/[email protected].1
```

To execute the installed packages from any location,
Expand Down Expand Up @@ -629,7 +629,7 @@ Commands:
# Get npm global installation folder
npm list -g
> ~/.local/share/npm/lib
> `-- @marinade.finance/[email protected].0
> `-- @marinade.finance/[email protected].1
# 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.0",
"version": "2.0.1",
"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: ^2.0.0",
"@marinade.finance/validator-bonds-sdk": " ^2.0.1",
"@coral-xyz/anchor": "^0.29.0",
"@marinade.finance/anchor-common": "^2.4.8",
"@marinade.finance/cli-common": "^2.4.8",
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.0')
.version('2.0.1')
.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.0",
"version": "2.0.1",
"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.0",
"version": "2.0.1",
"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.0",
"@marinade.finance/validator-bonds-sdk": "workspace: ^2.0.1",
"@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 2721591

Please sign in to comment.