Skip to content

Commit 1ff8b06

Browse files
bors[bot]passcod
andauthored
Merge #8
8: 1.0.10 r=passcod a=passcod Co-authored-by: Félix Saparelli <felix@passcod.name>
2 parents 9424adf + b640cef commit 1ff8b06

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Next (YYYY-MM-DD)
44

5+
## v1.0.10 (2022-06-01)
6+
7+
- Use BORS.
8+
- Update to nix 0.24, limit features to only those used ([#6](https://github.com/watchexec/clearscreen/pull/6)).
9+
510
## v1.0.9 (2021-12-02)
611

712
- Change CI test to test Windows 10 detection with a manifested test executable.

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ message: If you use this software, please cite it using these metadata.
55

66
title: ClearScreen
77
version: 1.0.6
8-
date-released: 2021-12-02
8+
date-released: 2022-06-01
99

1010
repository-code: https://github.com/watchexec/clearscreen
1111
license: Apache-2.0 OR MIT

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clearscreen"
3-
version = "1.0.9"
3+
version = "1.0.10"
44

55
authors = ["Félix Saparelli <felix@passcod.name>"]
66
license = "Apache-2.0 OR MIT"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ See my research notes in the [TERMINALS.md](./TERMINALS.md) file.
2222

2323
```toml
2424
[dependencies]
25-
clearscreen = "1.0.9"
25+
clearscreen = "1.0.10"
2626
```
2727

2828
```rust

bin/version

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ fi
3939

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

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

5152
git commit -am "$newver"
52-
git tag -sam "$newver" "v$newver"
5353

54-
echo "Pushing to upstream"
55-
git push --follow-tags $upstream $mainbranch
54+
echo "Pushing to upstream, make a PR for Bors then release with GH"
55+
git push -u $upstream release
56+
57+
echo "Deleting local release branch"
58+
git switch main
59+
git branch -D release

0 commit comments

Comments
 (0)