Skip to content

Commit

Permalink
Bump version: 0.9.1 → 0.10.0b1
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverHofkens committed Jan 23, 2024
1 parent 18a422a commit 4ccecc9
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.


[0.10.0] - 2024-01-21
---------------------

Added
^^^^^

* Parser,Django: Added support for geo.{intersects, distance, length} functions.
* Python 3.11 coverage in test matrix.


[0.9.1] - 2023-11-15
--------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = "Oliver Hofkens"

# The full version, including alpha/beta/rc tags
release = "0.9.1"
release = "0.10.0b1"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion odata_query/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.9.1"
__version__ = "0.10.0b1"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "odata-query"
version = "0.9.1"
version = "0.10.0b1"
description = "An OData query parser and transpiler."
authors = ["Oliver Hofkens <[email protected]>"]
readme = "README.rst"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.1
current_version = 0.10.0b1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:(?P<release>a|b|rc)(?P<build>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sonar.projectKey=gorillaco_odata-query
sonar.projectName=OData Query
sonar.projectVersion=0.9.1
sonar.projectVersion=0.10.0b1

sonar.sources=./odata_query
sonar.tests=./tests
Expand Down

0 comments on commit 4ccecc9

Please sign in to comment.