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

1.0.10 #8

Merged
merged 2 commits into from May 31, 2022
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
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