Skip to content

Commit

Permalink
Bumped version 0.34.6 --> 0.34.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tadams42 committed Jun 28, 2023
1 parent afa9fbc commit d14c11a
Show file tree
Hide file tree
Showing 5 changed files with 8 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.34.6
current_version = 0.34.7
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.dev(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}.dev{build}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 0.34.7 (fork-0.34.7) (2023-06-28)

- fix: missing import

## 0.34.6 (fork-0.34.6) (2023-06-27)

- fix: filtering operator `between` was not correctly implemented for SQLAlchemy
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.34.6"
release = "0.34.7"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion flask_rest_jsonapi_next/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# isort: skip_file
# fmt: off

__version__ = "0.34.6"
__version__ = "0.34.7"

from .api import Api
from .resource import ResourceList, ResourceDetail, ResourceRelationship
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "flask-rest-jsonapi-next"
version = "0.34.6"
version = "0.34.7"
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

0 comments on commit d14c11a

Please sign in to comment.