Skip to content

Commit

Permalink
bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhall88 committed Jul 7, 2022
1 parent 83ac170 commit 686c95e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.2.0]

### Changed

- Changed default `--set` from `-eux` to `-euxo pipefail`.

## [0.1.1]

### Added
Expand All @@ -21,5 +27,6 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

[0.1.0]: https://github.com/mbhall88/ssubmit/releases/tag/0.1.0
[0.1.1]: https://github.com/mbhall88/ssubmit/releases/tag/0.1.1
[unreleased]: https://github.com/mbhall88/ssubmit/compare/0.1.1...HEAD
[0.2.0]: https://github.com/mbhall88/ssubmit/compare/0.1.1...0.2.0
[unreleased]: https://github.com/mbhall88/ssubmit/compare/0.2.0...HEAD

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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ssubmit"
description = "Submit sbatch jobs without having to create a submission script"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
authors = ["Michael Hall <[email protected]>"]
repository = "https://github.com/mbhall88/ssubmit"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs and I don't want to fluff around with making a submission script.
Run this little scriptlet or download for you system from the [releases page][releases].

```shell
VERSION="0.1.1" # ssubmit version you want
VERSION="0.2.0" # ssubmit version you want
OS=$(uname -s)
if [ "$OS" = "Linux" ]; then
triple="x86_64-unknown-linux-musl"
Expand Down Expand Up @@ -147,7 +147,7 @@ You don't have to use patterns of course.

```shell
$ ssubmit --help
ssubmit 0.1.1
ssubmit 0.2.0
Michael Hall <[email protected]>
Submit sbatch jobs without having to create a submission script

Expand Down Expand Up @@ -216,7 +216,7 @@ OPTIONS:
For example, to exit when the command exits with a non-zero code and to treat unset
variables as an error during substitution, pass 'eu'. Pass '' or "" to set nothing

[default: eux]
[default: "euxo pipefail"]

-S, --shebang <SHEBANG>
The shell shebang for the submission script
Expand Down

0 comments on commit 686c95e

Please sign in to comment.