Skip to content

Commit

Permalink
Merge tag '0.41.0' into development
Browse files Browse the repository at this point in the history
0.41.0
  • Loading branch information
tadams42 committed Jul 26, 2023
2 parents 88c1b8c + 75c6e15 commit d04e607
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.40.0
current_version = 0.41.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.dev(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}.dev{build}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## 0.410.0 (2023-07-26)

- fix: don't log stacktrace for common exceptions
- fix: defend from empty filters

## 0.40.0 (2023-07-21)

- removed restriction on SQLAlchemy version, library now works with SQLAlchemy 2.x
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = "flask-rest-jsonapi-next"
copyright = "2016-2021 miLibris; 2021-... miLibris, tadams42"
author = "tadams42"
release = "0.40.0"
release = "0.41.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ requires = ["setuptools>=64", "wheel"]

[project]
name = "flask-rest-jsonapi-next"
version = "0.40.0"
version = "0.41.0"
description = "Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow and data provider of your choice (SQLAlchemy, MongoDB, ...)"
readme = "README.md"
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion src/flask_rest_jsonapi_next/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.40.0"
__version__ = "0.41.0"

from .api import Api
from .data_layers.alchemy import SqlalchemyDataLayer
Expand Down

0 comments on commit d04e607

Please sign in to comment.