Skip to content

Commit

Permalink
chore(main): release fluence-cli 0.2.33 (#106)
Browse files Browse the repository at this point in the history
* chore(main): release fluence-cli 0.2.33

* chore: use $npm_package_version in test script

Co-authored-by: folex <[email protected]>
  • Loading branch information
fluencebot and folex authored Jan 18, 2023
1 parent 26b329f commit 996ffc3
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.32"
".": "0.2.33"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

## [0.2.33](https://github.com/fluencelabs/fluence-cli/compare/fluence-cli-v0.2.32...fluence-cli-v0.2.33) (2023-01-18)


### Features

* **deal:** migrate deal cli [fixes DXJ-221] ([9a462a2](https://github.com/fluencelabs/fluence-cli/commit/9a462a2674739e16b93dd41fa6e006c7c4bc453f))
* **dependencies:** update fluence-js and aqua version [fixes DXJ-233] ([#104](https://github.com/fluencelabs/fluence-cli/issues/104)) ([255ff83](https://github.com/fluencelabs/fluence-cli/commit/255ff8359cd787728fcd9342fbca218386a3f75e))


### Bug Fixes

* **deps:** update dependency @fluencelabs/aqua-api to v0.9.2 ([#107](https://github.com/fluencelabs/fluence-cli/issues/107)) ([26b329f](https://github.com/fluencelabs/fluence-cli/commit/26b329fe99b6a5e499b6555766b8e4005df49ff5))
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ EXAMPLES
$ fluence aqua
```
_See code: [dist/commands/aqua.ts](https://github.com/fluencelabs/fluence-cli/blob/v0.0.0/dist/commands/aqua.ts)_
_See code: [dist/commands/aqua.ts](https://github.com/fluencelabs/fluence-cli/blob/v0.2.33/dist/commands/aqua.ts)_
## `fluence autocomplete [SHELL]`
Expand Down Expand Up @@ -212,7 +212,7 @@ EXAMPLES
$ fluence build
```
_See code: [dist/commands/build.ts](https://github.com/fluencelabs/fluence-cli/blob/v0.0.0/dist/commands/build.ts)_
_See code: [dist/commands/build.ts](https://github.com/fluencelabs/fluence-cli/blob/v0.2.33/dist/commands/build.ts)_
## `fluence dep cargo i [PACKAGE-NAME | PACKAGE-NAME@VERSION]`
Expand Down Expand Up @@ -488,7 +488,7 @@ EXAMPLES
$ fluence deploy
```
_See code: [dist/commands/deploy.ts](https://github.com/fluencelabs/fluence-cli/blob/v0.0.0/dist/commands/deploy.ts)_
_See code: [dist/commands/deploy.ts](https://github.com/fluencelabs/fluence-cli/blob/v0.2.33/dist/commands/deploy.ts)_
## `fluence help [COMMAND]`
Expand Down Expand Up @@ -532,7 +532,7 @@ EXAMPLES
$ fluence init
```
_See code: [dist/commands/init.ts](https://github.com/fluencelabs/fluence-cli/blob/v0.0.0/dist/commands/init.ts)_
_See code: [dist/commands/init.ts](https://github.com/fluencelabs/fluence-cli/blob/v0.2.33/dist/commands/init.ts)_
## `fluence key default [NAME]`
Expand Down Expand Up @@ -686,7 +686,7 @@ EXAMPLES
$ fluence remove
```
_See code: [dist/commands/remove.ts](https://github.com/fluencelabs/fluence-cli/blob/v0.0.0/dist/commands/remove.ts)_
_See code: [dist/commands/remove.ts](https://github.com/fluencelabs/fluence-cli/blob/v0.2.33/dist/commands/remove.ts)_
## `fluence run`
Expand Down Expand Up @@ -731,7 +731,7 @@ EXAMPLES
$ fluence run
```
_See code: [dist/commands/run.ts](https://github.com/fluencelabs/fluence-cli/blob/v0.0.0/dist/commands/run.ts)_
_See code: [dist/commands/run.ts](https://github.com/fluencelabs/fluence-cli/blob/v0.2.33/dist/commands/run.ts)_
## `fluence service add [PATH | URL]`
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fluencelabs/cli",
"version": "0.0.0",
"version": "0.2.33",
"description": "CLI for working with Fluence network",
"author": "Fluence Labs",
"bin": {
Expand All @@ -25,7 +25,7 @@
"lint-fix": "eslint . --ext .ts --cache --fix",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "shx rm -rf tmp && shx mkdir tmp && npm pack --pack-destination ./tmp && cd tmp && npm init -y && npm i ./fluencelabs-cli-0.0.0.tgz && cd .. && jest",
"test": "shx rm -rf tmp && shx mkdir tmp && npm pack --pack-destination ./tmp && cd tmp && npm init -y && npm i ./fluencelabs-cli-${npm_package_version}.tgz && cd .. && jest",
"posttest": "npm run lint",
"prepare": "husky install",
"check": "npm run build && npm run lint-fix",
Expand Down

0 comments on commit 996ffc3

Please sign in to comment.