Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump nimbus-cli to 0.3.0 #5674

Merged
merged 2 commits into from Jun 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -20,6 +20,7 @@

### 🦊 What's Changed 🦊

- Version bump to `0.3.0` ([#5674](https://github.com/mozilla/application-services/pull/5674)). User facing changelog: https://experimenter.info/nimbus-cli/whats-new
- Added isRollout and bucketing info to the `list` command ([#5672](https://github.com/mozilla/application-services/pull/5672)).
- Fixed several paper cut usability issues ([#5654](https://github.com/mozilla/application-services/pull/5654)):
- Experiments by default are fetched from the API v6, eliminating latency between making changes on experimenter and syncing with remote settings.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion components/support/nimbus-cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "nimbus-cli"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = ["Nimbus SDK Engineering"]
license = "MPL-2.0"
Expand Down
5 changes: 5 additions & 0 deletions install-nimbus-cli.sh
Expand Up @@ -18,6 +18,7 @@ HAS_WGET="$(type "wget" &> /dev/null && echo true || echo false)"
HAS_UNZIP="$(type "unzip" &> /dev/null && echo true || echo false)"

USE_SUDO="false"
IS_UPGRADE="false"

# echoProgress displays a message to the user.
echoProgress() {
Expand Down Expand Up @@ -105,6 +106,7 @@ initInstallDirectory() {
# Follow the softlinks to where the file actually sites.
existing=$(readlink -f "$existing")
my_dir=$(dirname "$existing")
IS_UPGRADE="true"
else
# Otherwise, we need to find some place on the existing PATH.
my_path=$(echo "$PATH" | tr ':' '\n')
Expand Down Expand Up @@ -167,6 +169,9 @@ cleanup() {

success() {
echoProgress "Success!"
if [[ "$IS_UPGRADE" == "true" ]] ; then
echoInfo "To see What's New, visit: https://experimenter.info/nimbus-cli/whats-new"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This link won't be live until mozilla/experimenter-docs#454 lands.

fi
}

# runs the given command as root (detects if we are root already)
Expand Down