Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and salamaashoush committed Nov 17, 2024
1 parent a339be1 commit f957257
Show file tree
Hide file tree
Showing 6 changed files with 111 additions and 40 deletions.
5 changes: 0 additions & 5 deletions .changeset/light-pumas-itch.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# pactup

## 0.2.21

### Patch Changes

- [`cbcee11`](https://github.com/kadena-community/pactup/commit/cbcee115b63dbcd328be542ad9f0813146ed41c3) Thanks [@salamaashoush](https://github.com/salamaashoush)! - update deps and fix --use-on-cd

## 0.2.20

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pactup"
version = "0.2.20"
version = "0.2.21"
edition = "2021"
license = "MIT"
publish = true
Expand Down
134 changes: 102 additions & 32 deletions docs/command.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Usage: pactup [OPTIONS] <COMMAND>
Commands:
list-remote List all remote Pact versions [aliases: ls-remote]
list List all locally installed Pact versions [aliases: ls]
install Install a new Pact version
install Install a new Pact version [aliases: i]
use Change Pact version
env Print and set up required environment variables for pactup
completions Print shell completions to stdout
Expand All @@ -17,7 +17,7 @@ Commands:
default Set a version as the default version
current Print the current Pact version
exec Run a command within pactup context
uninstall Uninstall a Pact version
uninstall Uninstall a Pact version [aliases: uni]
which Print the path to installed Pact version
help Print this message or the help of the given subcommand(s)
Expand Down Expand Up @@ -61,12 +61,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand Down Expand Up @@ -140,12 +145,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand Down Expand Up @@ -198,12 +208,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand Down Expand Up @@ -275,12 +290,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand Down Expand Up @@ -343,12 +363,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand All @@ -375,7 +400,7 @@ Options:
--shell <SHELL>
The shell syntax to use. Infers when missing
[possible values: bash, zsh, fish, power-shell]
[possible values: bash, zsh, fish, powershell]
--json
Print JSON instead of shell commands
Expand Down Expand Up @@ -416,12 +441,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand All @@ -444,7 +474,7 @@ Options:
--shell <SHELL>
The shell syntax to use. Infers when missing
[possible values: bash, zsh, fish, power-shell]
[possible values: bash, zsh, fish, powershell]
--pact-5x-repo <PACT_5X_REPO>
<https://github.com/kadena-io/pact>
Expand Down Expand Up @@ -479,12 +509,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand Down Expand Up @@ -544,12 +579,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand Down Expand Up @@ -606,12 +646,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand Down Expand Up @@ -670,12 +715,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand Down Expand Up @@ -731,12 +781,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand Down Expand Up @@ -801,12 +856,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand Down Expand Up @@ -865,12 +925,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand Down Expand Up @@ -927,12 +992,17 @@ Options:
- local: Use the local version of Node defined within the current directory
- recursive: Use the version of Node defined within the current directory and all parent directories
--resolve-engines
--resolve-engines [<RESOLVE_ENGINES>]
Resolve `engines.pact` field in `package.json` whenever a `.pact-version` or `.pactrc` file is not present.
Experimental: This feature is subject to change.
This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
Note: `engines.pact` can be any semver range, with the latest satisfying version being resolved.
Note 2: If you disable it, please open an issue on GitHub describing _why_ you disabled it.
In the future, disabling it might be a no-op, so it's worth knowing any reason to
do that.
[env: PACTUP_RESOLVE_ENGINES]
[possible values: true, false]
-h, --help
Print help (see a summary with '-h')
Expand Down
2 changes: 1 addition & 1 deletion docs/pactup.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pactup",
"version": "0.2.20",
"version": "0.2.21",
"repository": {
"type": "git",
"url": "[email protected]:kadena-community/pactup.git"
Expand Down

0 comments on commit f957257

Please sign in to comment.