-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: updates the docs adds a starting version to the changelog, links to my PhD thesis in the overview, some info on create a release, and two more examples to the user guide * chore: includes Python Semantic Release adds python-semantic-release to dev deps, configures it in pyproject.toml, and adds a GA workflow in release.yml * chore: updates docs adds docs and changelog urls to project urls, ignores print warnings for ipynb's for ruff * chore: updates build and publish github actions replaces build and twin with hynek build and inspect * style: fixes style issues * chore: removes release github action comments out the release action to check where issues are occuring
- Loading branch information
Showing
10 changed files
with
2,299 additions
and
81 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Changelog | ||
|
||
## Version 0.1.0 | ||
|
||
First release! |
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,30 @@ | ||
# Release process for `invert4geom` | ||
|
||
We use _semantic versioning_, where version numbers are classified as | ||
v<major>.<minor>.<patch>. By default, releases are made from the main branch as | ||
part of a linear release history and, as described below, are triggered by | ||
pushing a git tag to the invert4geom repository on github. If a patch release is | ||
required for an older version, a branch can be created from the appropriate | ||
point in main and the following instructions are still apt. | ||
|
||
## Update the release notes: | ||
|
||
1. Make a list of merges, contributors, and reviewers:: | ||
|
||
### Set release variables: | ||
|
||
export VERSION=<about-to-be-released version number> export | ||
PREVIOUS=<previous version number> | ||
|
||
### Autogenerate release notes | ||
|
||
changelist mdtanker/invert4geom v${PREVIOUS} main --version ${VERSION} | ||
--config pyproject.toml --out ${VERSION}.md | ||
|
||
### Put the output of the above command at the top of `CHANGELOG.md` | ||
|
||
cat ${VERSION}.md | cat - CHANGELOG.md > temp && mv temp CHANGELOG.md | ||
|
||
2. Scan the PR titles for highlights and mention these in the relevant sections | ||
of the notes. Ideally, all changed API objects are mentioned by name, e.g. a | ||
new parameter or a deprecated function. |
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,3 @@ | ||
```{include} ../CHANGELOG.md | ||
``` |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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