Skip to content
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
34 changes: 1 addition & 33 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,5 @@
# Frequenz Repository Configuration Release Notes

## Summary

<!-- Here goes a general summary of what this release is about -->

## Upgrading

<!-- Here goes notes on how to upgrade from previous versions, including deprecations and what they should be replaced with -->

### Cookiecutter template

All upgrading should be done via the migration script or regenerating the templates.

```bash
curl -sSL https://raw.githubusercontent.com/frequenz-floss/frequenz-repo-config-python/v0.12/cookiecutter/migrate.py | python3
```

But you might still need to adapt your code:

<!-- Here upgrade steps for cookiecutter specifically -->

## New Features

* Pylint4 is now supported.

### Cookiecutter template

- Dependencies have been updated.

## Bug Fixes

<!-- Here goes notable bug fixes that are worth a special mention or explanation -->

### Cookiecutter template

<!-- Here bug fixes for cookiecutter specifically -->
* Pytest v9.x is now supported.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ lib = []
model = []
extra-lint-examples = [
"pylint >= 2.17.3, < 5",
"pytest >= 7.3.0, < 9",
"pytest >= 7.3.0, < 10",
"sybil >= 6.1.1, < 10",
]
dev-flake8 = [
Expand Down Expand Up @@ -104,8 +104,8 @@ dev-pylint = [
"setuptools >= 67.6.0, < 81", # Should match the api dependency
]
dev-pytest = [
"pytest == 8.3.5",
"pylint == 4.0.0", # We need this to check for the examples
"pytest == 9.0.1",
"pylint == 4.0.3", # We need this to check for the examples
"cookiecutter == 2.6.0", # For checking the cookiecutter scripts
"jinja2 == 3.1.6", # For checking the cookiecutter scripts
"sybil >= 6.1.1, < 10", # Should be consistent with the extra-lint-examples dependency
Expand Down
Loading