-
Notifications
You must be signed in to change notification settings - Fork 183
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
feat: add citation file #908
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
5d4858b
misc: add citation file
ruben-arts 68cafc4
Merge branch 'main' into misc/add_citation
ruben-arts 9e2a9c8
chore: update citation an automated update version
ruben-arts b1f2db7
chore: run tbump
ruben-arts b96309f
Update tbump.toml
ruben-arts e5eb2f9
Merge branch 'main' into misc/add_citation
ruben-arts File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# This CITATION.cff file was generated with cffinit. | ||
# Visit https://bit.ly/cffinit to generate yours today! | ||
|
||
cff-version: 1.2.0 | ||
title: pixi | ||
message: >- | ||
If pixi contributes to a project that leads to a | ||
scientific publication, please acknowledge this fact by | ||
citing according to this file. | ||
type: software | ||
# Based on recommendation we use the authors that are responsible for the tool from `prefix.dev` as authors. | ||
# Using personal email to possibly outlive the employment at `prefix.dev`. | ||
authors: | ||
- given-names: Ruben | ||
family-names: Arts | ||
email: ruben.arts@hotmail.com | ||
- given-names: Bas | ||
family-names: Zalmstra | ||
email: zalmstra.bas@gmail.com | ||
- given-names: Wolf | ||
family-names: Volprecht | ||
email: w.vollprecht@gmail.com | ||
- given-names: Tim | ||
name-particle: de | ||
family-names: Jager | ||
email: tdejager89@gmail.com | ||
repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.16.1' | ||
url: 'https://pixi.sh/v0.16.1' | ||
abstract: >- | ||
A cross-platform, language agnostic, package/project | ||
management tool for development in virtual environments. | ||
keywords: | ||
- package-management | ||
- project-management | ||
- virtual-environments | ||
- conda | ||
- pypi | ||
- development-tools | ||
- pixi | ||
license: BSD-3-Clause |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I haven't checked the codebase to see how you handle versioning release information, but I would add the
version
key here too.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you decide to incorporate the version here, please make a CI check that the version is synced with the one in
Cargo.toml
, otherwise it will drift 100%.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
More an "and" than an "or" but even if you only use VCS information for version information I would use some sort of version bump tool like
tbump
to try to go through and update information everywhere it exists.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would love to automate this but I want to automate the complete release and add this part to it. I've been experimenting with
release-plz
asrattler
uses it but I haven't figure it out nicely yet. So in this PR I added the tbump as a preperation but it is not used in CI yet.Added the versions to the urls 👍