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

New version & changelog #1532

Merged
merged 3 commits into from
May 30, 2024
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
17 changes: 17 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
Changelog
==========

.. _2.7.0:
rv0lt marked this conversation as resolved.
Show resolved Hide resolved

2.7.0 - 2024-05-29
~~~~~~~~~~~~~~~~~~~~~~~

- New features:
- Fix the User endpoint according to OpenAPI standard.
- Added email contact to troubleshooting page
- Dependencies:
- `Werkzeug` from `2.2.3` to `3.0.3`
- `Flask-WTF` from `1.0.0` to `1.1.2`
- `Flask-Login` from `0.6.2` to `0.6.3`
- `Flask-HTTPAuth` from `4.5.0` to `4.8.0`
- Bugs fixed:
- Boolean inputs in requests are parsed with flask types.


.. _2.6.4:

2.6.4 - 2023-04-10
Expand Down
2 changes: 1 addition & 1 deletion dds_web/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Do not do major version upgrade during 2024.
# If mid or minor version reaches 9, continue with 10, 11 etc etc.
__version__ = "2.6.4"
__version__ = "2.7.0"
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert version.__version__ == "2.6.4"
assert version.__version__ == "2.7.0"
Loading