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

Fix citation version and upgrade its format #13

Merged
merged 2 commits into from Dec 28, 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
17 changes: 8 additions & 9 deletions CITATION.cff
@@ -1,16 +1,15 @@
# YAML 1.2
---
cff-version: "1.1.0"
message: If you use this software, please cite it using these metadata.
cff-version: 1.2.0
message: |
If you use this software, please cite it using these metadata.
title: "ClearScreen: a library to clear terminal screens and a research dataset on screen clearing behaviour in terminal emulators"

title: ClearScreen
version: 1.0.6
version: "2.0.0"
date-released: 2022-12-28

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

authors:
- family-names: Saparelli
given-names: Félix
...
- family-names: Saparelli
given-names: Félix
orcid: https://orcid.org/0000-0002-2010-630X
2 changes: 1 addition & 1 deletion bin/version
Expand Up @@ -44,7 +44,7 @@ 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
sed -E -i "s/^version = \"$extver\"/version = \"$newver\"/1" Cargo.toml
sed -E -i "s/^version: \"$extver\"/version: \"$newver\"/1" CITATION.cff
sed -E -i "s/^version: \"?$extver\"?/version: \"$newver\"/1" CITATION.cff
sed -E -i "s/^date-released: .+$/date-released: $date/1" CITATION.cff

cargo check
Expand Down