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

Prepare for next release #307

Merged
merged 4 commits into from
Aug 23, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,18 @@ Security in case of vulnerabilities.

## [Unreleased]

## [0.9.2] - 2023-08-23

### Added
- Donation links.

### Fixed

- {func}`snek5000.find_configfile` removes call to deprecated function.
- Explicit `ValueError` when no coordinates are defined and history points
object's `load` method is invoked.
- Minor corrections in `README.md` and documentation and JOSS manuscript.

## [0.9.1] - 2023-05-01

### Added
Expand Down Expand Up @@ -397,5 +409,6 @@ lists are a very incomplete lists of the additions, changes and deprecations.
[0.8.0]: https://github.com/snek5000/snek5000/compare/0.7.0b0...0.8.0
[0.9.0]: https://github.com/snek5000/snek5000/compare/0.8.0...0.9.0
[0.9.1]: https://github.com/snek5000/snek5000/compare/0.9.0...0.9.1
[0.9.2]: https://github.com/snek5000/snek5000/compare/0.9.1...0.9.2
[@paugier]: https://github.com/paugier
[unreleased]: https://github.com/snek5000/snek5000/compare/0.9.1...HEAD
[unreleased]: https://github.com/snek5000/snek5000/compare/0.9.2...HEAD
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ authors:
given-names: Pierre
orcid: https://orcid.org/0000-0001-9481-4459

version: 0.9.1
date-released: 2023-05-01
version: 0.9.2
date-released: 2023-08-13
doi: 10.5281/zenodo.7399621
license: BSD-3-Clause
repository-code: "https://github.com/snek5000/snek5000"
2 changes: 0 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ source activate.sh

## General guidelines

- **Editor**: Use an editor which supports [EditorConfig](http://editorconfig.org/)

- **Style guide**: For Python code, `black`, `isort` and `flake8` are used to check and
lint. Installing `pre-commit` would enforce the style automatically as a Git hook.

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def pip_compile(session, extra):

session.run(
*shlex.split(
"python -m piptools compile --resolver backtracking --quiet "
"python -m piptools compile --resolver backtracking --quiet -U "
f"{in_extra} {in_file} {PACKAGE_SPEC} "
f"-o {out_file}"
),
Expand Down
Loading
Loading