-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from nichmor/release/v0.1.2
update: update to v0.1.2
- Loading branch information
Showing
4 changed files
with
17 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## Small guide to releasing | ||
|
||
Release new version: | ||
|
||
1. Create a branch `release/v{version}` and do the following: | ||
2. Update `pyproject.toml` and `pixi.toml` | ||
3. Run `pixi install` | ||
4. Add lock and toml files to commit. | ||
5. Push to remote and see if CI is green. *if not*: either make changes in a separate PR (if big), or here (if small). | ||
7. Merge to main. | ||
8. Build an sdist using `pixi r build_sdist`. This needs to succeed. | ||
9. Create a tag `git tag v{version}` `git push --tags`. | ||
10. Create the release on github and generate release notes, upload the generated sdist. |
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 @@ | ||
[project] | ||
name = "rattler-build-conda-compat" | ||
version = "0.0.6" | ||
version = "0.1.2" | ||
description = "A package for exposing rattler-build API for conda-smithy" | ||
authors = ["nichmor <[email protected]>"] | ||
channels = ["conda-forge"] | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ build-backend = "hatchling.build" | |
[project] | ||
name = "rattler-build-conda-compat" | ||
description = "A package for exposing rattler-build API for conda-smithy" | ||
version = "0.1.0" | ||
version = "0.1.2" | ||
readme = "README.md" | ||
authors = [{ name = "Nichita Morcotilo", email = "[email protected]" }] | ||
license = { file = "LICENSE.txt" } | ||
|