Skip to content

Commit

Permalink
docs(CHANGES): Note GitHub actions and poetry packaging updates, clas…
Browse files Browse the repository at this point in the history
…sifiers
  • Loading branch information
tony committed Nov 19, 2023
1 parent e53c1ec commit 6c5ad32
Showing 1 changed file with 42 additions and 10 deletions.
52 changes: 42 additions & 10 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,48 @@ To install the unreleased gp-libs version, see [developmental releases](https://
$ pip install --user --upgrade --pre gp-libs
```

## gp-libs 0.0.3 (unreleased)
## gp-libs 0.0.5 (unreleased)

- _Add your latest changes from PRs here_

## gp-libs 0.0.4 (2023-11-19)

### Development

- poetry: 1.6.1 -> 1.7.0

See also: https://github.com/python-poetry/poetry/blob/1.7.0/CHANGELOG.md

- Move formatting from `black` to [`ruff format`] (#27)

This retains the same formatting style of `black` while eliminating a
dev dependency by using our existing rust-based `ruff` linter.

[`ruff format`]: https://docs.astral.sh/ruff/formatter/

- CI: Update action packages to fix warnings

- [dorny/paths-filter]: 2.7.0 -> 2.11.1

[dorny/paths-filter]: https://github.com/dorny/paths-filter

### Packaging

- Add Python 3.12 to trove classifiers
- Packaging (poetry): Fix development dependencies

Per [Poetry's docs on managing dependencies] and `poetry check`, we had it wrong: Instead of using extras, we should create these:

```toml
[tool.poetry.group.[group-name].dependencies]
dev-dependency = "1.0.0"
```

Which we now do.

[Poetry's docs on managing dependencies]: https://python-poetry.org/docs/master/managing-dependencies/

## gp-libs 0.0.3 (2023-10-14)

### Fixes

Expand All @@ -25,15 +66,6 @@ $ pip install --user --upgrade --pre gp-libs
- Use `import typing as t` everywhere (#25)

See also: <https://github.com/pytest-dev/pytest/pull/11317>
- poetry: 1.6.1 -> 1.7.0

See also: https://github.com/python-poetry/poetry/blob/1.7.0/CHANGELOG.md
- Move formatting from `black` to [`ruff format`] (#27)

This retains the same formatting style of `black` while eliminating a
dev dependency by using our existing rust-based `ruff` linter.

[`ruff format`]: https://docs.astral.sh/ruff/formatter/

### Packaging

Expand Down

0 comments on commit 6c5ad32

Please sign in to comment.