Skip to content

Commit

Permalink
Merge branch 'main' into dev/batch
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom authored Aug 21, 2024
2 parents d2ee595 + e3f9fec commit 5ea9a88
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ The exercism CLI follows [semantic versioning](http://semver.org/).

- **Your contribution here**

## v3.4.2 (2024-08-20)

- [#1156](https://github.com/exercism/cli/pull/1156) Add `test` command to Shell completions -
[@muzimuzhi]

## v3.4.1 (2024-08-15)

- [#1152](https://github.com/exercism/cli/pull/1152) Add support for Idris to `exercism test` -
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ _Note: It's useful to add the version to the commit message when you bump it: e.
Once the version bump PR has been merged, run the following command to cut a release:

```shell
GPG_FINGERPINT="<THE_GPG_FINGERPRINT>" ./bin/release.sh
GPG_FINGERPRINT="<THE_GPG_FINGERPRINT>" ./bin/release.sh
```

## Cut Release on GitHub
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

// Version is the version of the current build.
// It follows semantic versioning.
const Version = "3.4.1"
const Version = "3.4.2"

// checkLatest flag for version command.
var checkLatest bool
Expand Down
6 changes: 5 additions & 1 deletion shell/exercism.fish
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ complete -f -c exercism -n "__fish_seen_subcommand_from download" -s u -l uuid -

# Help
complete -f -c exercism -n "__fish_use_subcommand" -a "help" -d "Shows a list of commands or help for one command"
complete -f -c exercism -n "__fish_seen_subcommand_from help" -a "configure download help open submit troubleshoot upgrade version workspace"
complete -f -c exercism -n "__fish_seen_subcommand_from help" -a "configure download help open submit test troubleshoot upgrade version workspace"

# Open
complete -f -c exercism -n "__fish_use_subcommand" -a "open" -d "Opens a browser to exercism.io for the specified submission."
Expand All @@ -25,6 +25,10 @@ complete -f -c exercism -n "__fish_seen_subcommand_from open" -s h -l help -d "h
complete -f -c exercism -n "__fish_use_subcommand" -a "submit" -d "Submits a new iteration to a problem on exercism.io."
complete -f -c exercism -n "__fish_seen_subcommand_from submit" -s h -l help -d "help for submit"

# Test
complete -f -c exercism -n "__fish_use_subcommand" -a "test" -d "Run the exercise's tests."
complete -f -c exercism -n "__fish_seen_subcommand_from submit" -s h -l help -d "help for test"

# Troubleshoot
complete -f -c exercism -n "__fish_use_subcommand" -a "troubleshoot" -d "Outputs useful debug information."
complete -f -c exercism -n "__fish_seen_subcommand_from troubleshoot" -s f -l full-api-key -d "display full API key (censored by default)"
Expand Down
2 changes: 1 addition & 1 deletion shell/exercism_completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ _exercism () {
opts="--verbose --timeout"

commands="configure download open
submit troubleshoot upgrade version workspace help"
submit test troubleshoot upgrade version workspace help"
config_opts="--show"
version_opts="--latest"

Expand Down
1 change: 1 addition & 0 deletions shell/exercism_completion.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ options=(configure:"Writes config values to a JSON file."
download:"Downloads and saves a specified submission into the local system"
open:"Opens a browser to exercism.io for the specified submission."
submit:"Submits a new iteration to a problem on exercism.io."
test:"Run the exercise's tests."
troubleshoot:"Outputs useful debug information."
upgrade:"Upgrades to the latest available version."
version:"Outputs version information."
Expand Down

0 comments on commit 5ea9a88

Please sign in to comment.