Skip to content

Commit

Permalink
Merge #8
Browse files Browse the repository at this point in the history
8: 1.0.10 r=passcod a=passcod



Co-authored-by: Félix Saparelli <felix@passcod.name>
  • Loading branch information
bors[bot] and passcod committed May 31, 2022
2 parents 9424adf + b640cef commit 1ff8b06
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,11 @@

## Next (YYYY-MM-DD)

## v1.0.10 (2022-06-01)

- Use BORS.
- Update to nix 0.24, limit features to only those used ([#6](https://github.com/watchexec/clearscreen/pull/6)).

## v1.0.9 (2021-12-02)

- Change CI test to test Windows 10 detection with a manifested test executable.
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Expand Up @@ -5,7 +5,7 @@ message: If you use this software, please cite it using these metadata.

title: ClearScreen
version: 1.0.6
date-released: 2021-12-02
date-released: 2022-06-01

repository-code: https://github.com/watchexec/clearscreen
license: Apache-2.0 OR MIT
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "clearscreen"
version = "1.0.9"
version = "1.0.10"

authors = ["Félix Saparelli <felix@passcod.name>"]
license = "Apache-2.0 OR MIT"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -22,7 +22,7 @@ See my research notes in the [TERMINALS.md](./TERMINALS.md) file.

```toml
[dependencies]
clearscreen = "1.0.9"
clearscreen = "1.0.10"
```

```rust
Expand Down
10 changes: 7 additions & 3 deletions bin/version
Expand Up @@ -39,6 +39,7 @@ fi

date=$(date +%Y-%m-%d)
echo "Next version to be $newver ($date), creating..."
git switch -C release

sed -E -i "s/^## Next.*$/## Next (YYYY-MM-DD)\n\n## v$newver ($date)/1" CHANGELOG.md
sed -E -i "s/^clearscreen = \"$extver\"/clearscreen = \"$newver\"/1" README.md
Expand All @@ -49,7 +50,10 @@ sed -E -i "s/^date-released: .+$/date-released: $date/1" CITATION.cff
cargo check

git commit -am "$newver"
git tag -sam "$newver" "v$newver"

echo "Pushing to upstream"
git push --follow-tags $upstream $mainbranch
echo "Pushing to upstream, make a PR for Bors then release with GH"
git push -u $upstream release

echo "Deleting local release branch"
git switch main
git branch -D release

0 comments on commit 1ff8b06

Please sign in to comment.