-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/issue_1499
- Loading branch information
Showing
25 changed files
with
528 additions
and
177 deletions.
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
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 |
---|---|---|
|
@@ -24,8 +24,8 @@ authors: | |
name-particle: de | ||
family-names: Jager | ||
email: [email protected] | ||
repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.24.1' | ||
url: 'https://pixi.sh/v0.24.1' | ||
repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.24.2' | ||
url: 'https://pixi.sh/v0.24.2' | ||
abstract: >- | ||
A cross-platform, language agnostic, package/project | ||
management tool for development in virtual environments. | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pixi" | ||
version = "0.24.1" | ||
version = "0.24.2" | ||
description = "A package management and workflow tool" | ||
edition = "2021" | ||
authors = ["pixi contributors <[email protected]>"] | ||
|
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ We created [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi) to | |
```yaml | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.24.1 | ||
pixi-version: v0.24.2 | ||
cache: true | ||
auth-host: prefix.dev | ||
auth-token: ${{ secrets.PREFIX_DEV_TOKEN }} | ||
|
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
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,31 @@ | ||
# Making a release of pixi | ||
|
||
## Prep | ||
- Make sure main is up-to-date and ci passes: [![build-badge](https://img.shields.io/github/actions/workflow/status/prefix-dev/pixi/rust.yml?style=flat-square&branch=main)](https://github.com/prefix-dev/pixi/actions/workflows/rust.yml?query=branch%3Amain+) | ||
- Set the variable `export RELEASE_VERSION=X.Y.Z` in your shell | ||
- Make a new branch for the release: `git checkout main && git pull upstream main && git checkout -b bump/prepare-v$RELEASE_VERSION` | ||
- Bump all versions: `pixi run bump` | ||
- Update the changelog: `pixi run bump-changelog` | ||
- Don't forget to update the "Highlights" section. | ||
- Commit the changes: `git commit -am "chore: version to $RELEASE_VERSION"` | ||
- Push the changes: `git push origin` | ||
|
||
## Release prep PR | ||
- Create a PR to check off the change with the peers | ||
- Merge that PR | ||
|
||
## Tagging the release | ||
- Checkout main: `git fetch && git checkout upstream/main` | ||
- Tag the release: `git tag v$RELEASE_VERSION -m "Release $RELEASE_VERSION"` | ||
- Push the tag: `git push upstream v$RELEASE_VERSION` | ||
|
||
## Publishing the release | ||
- After that, update the Release which has CI created for you (after the first build) and add the changelog to the release notes. | ||
- Make sure all the artifacts are there and the CI is green!!! | ||
- Publish the release and make sure it is set as latest. | ||
|
||
## Test the release using the install script: | ||
- `curl -fsSL https://pixi.sh/install.sh | bash` or `iwr -useb https://pixi.sh/install.ps1 | iex` | ||
- `pixi --version` should show the new version | ||
|
||
DONE! |
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
# Version: v0.24.1 | ||
# Version: v0.24.2 | ||
|
||
__wrap__() { | ||
|
||
|
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
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
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
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
Oops, something went wrong.