Skip to content

Commit

Permalink
Version 1.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Aurélien Bompard <[email protected]>
  • Loading branch information
abompard committed Apr 15, 2024
1 parent 99f938d commit 5a3ea86
Show file tree
Hide file tree
Showing 14 changed files with 70 additions and 10 deletions.
20 changes: 20 additions & 0 deletions datanommer.commands/NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ Release Notes

.. towncrier release notes start
v1.2.0
======

Released on 2024-04-15.
This is a feature release that adds the datanommer-extract-users script.

Features
^^^^^^^^

* Add the datanommer-extract-users script to fill the usernames table with data
from recently-added message schemas (`320a466
<https://github.com/fedora-infra/datanommer/commit/320a466>`_).

Development Improvements
^^^^^^^^^^^^^^^^^^^^^^^^

* Use Ruff instead of flake8 and isort and bandit (:issue:`4f7ffaa`
`#4f7ffaa <https://github.com/fedora-infra/datanommer/issues/4f7ffaa>`_).


v1.1.0
======

Expand Down
1 change: 0 additions & 1 deletion datanommer.commands/news/4f7ffaa.dev

This file was deleted.

1 change: 0 additions & 1 deletion datanommer.commands/news/C320a466.feature

This file was deleted.

2 changes: 1 addition & 1 deletion datanommer.commands/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "datanommer.commands"
version = "1.1.0"
version = "1.2.0"
description = "Console commands for datanommer"
authors = [
"Fedora Infrastructure <[email protected]>"
Expand Down
12 changes: 12 additions & 0 deletions datanommer.consumer/NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ Release Notes

.. towncrier release notes start
v1.2.0
======

Released on 2024-04-15. This is a minor release.

Development Improvements
^^^^^^^^^^^^^^^^^^^^^^^^

* Use Ruff instead of flake8 and isort and bandit (:issue:`4f7ffaa`
`#4f7ffaa <https://github.com/fedora-infra/datanommer/issues/4f7ffaa>`_).


v1.1.0
======

Expand Down
1 change: 0 additions & 1 deletion datanommer.consumer/news/4f7ffaa.dev

This file was deleted.

2 changes: 1 addition & 1 deletion datanommer.consumer/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "datanommer.consumer"
version = "1.1.0"
version = "1.2.0"
description = "Consumer for datanommer"
authors = [
"Fedora Infrastructure <[email protected]>"
Expand Down
21 changes: 21 additions & 0 deletions datanommer.models/NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ Release Notes

.. towncrier release notes start
v1.2.0
======

Released on 2024-04-15.
This is a feature release that adds schema packages and upgrades the SQLAlchemy
API to the 2.0 style.

Features
^^^^^^^^

* Upgrade to the SQLAlchemy 2.0 API (`981e2a4
<https://github.com/fedora-infra/datanommer/commit/981e2a4>`_).
* Add a few schema packages to the dependencies.

Development Improvements
^^^^^^^^^^^^^^^^^^^^^^^^

* Use Ruff instead of flake8 and isort and bandit (:issue:`4f7ffaa`
`#4f7ffaa <https://github.com/fedora-infra/datanommer/issues/4f7ffaa>`_).


v1.1.0
======

Expand Down
1 change: 0 additions & 1 deletion datanommer.models/news/+schema-packages.feature

This file was deleted.

1 change: 0 additions & 1 deletion datanommer.models/news/4f7ffaa.dev

This file was deleted.

1 change: 0 additions & 1 deletion datanommer.models/news/C981e2a4.feature

This file was deleted.

2 changes: 1 addition & 1 deletion datanommer.models/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "datanommer.models"
version = "1.1.0"
version = "1.2.0"
description = "SQLAlchemy models for datanommer"
authors = [
"Fedora Infrastructure <[email protected]>"
Expand Down
13 changes: 13 additions & 0 deletions tools/towncrier/run-towncrier.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

set -e

echo "Building release notes for all packages"
for package in datanommer.{models,consumer,commands}; do
echo "[$package] Building release notes..."
pushd $package
poetry install --all-extras
poetry run towncrier build --yes $@
popd
echo "[$package] done."
done
2 changes: 1 addition & 1 deletion tools/towncrier/template.rst.j2
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{%- endmacro -%}

{{ top_line }}
{{ top_underline * ((top_line)|length)}}
{{ top_underline * ((top_line)|length)-}}

Released on {{ versiondata.date }}.
This is a {major|feature|bugfix} release that adds [short summary].
Expand Down

0 comments on commit 5a3ea86

Please sign in to comment.