From aa80e0658b0ab6ffcb08ea5ce57e59e4c5dd4e7d Mon Sep 17 00:00:00 2001 From: Oliver Hofkens Date: Fri, 28 Jun 2024 17:03:13 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.0b1=20=E2=86=92=200.10.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/source/conf.py | 2 +- odata_query/__init__.py | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- sonar-project.properties | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 823e3a4..a376906 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = "Oliver Hofkens" # The full version, including alpha/beta/rc tags -release = "0.10.0b1" +release = "0.10.0" # -- General configuration --------------------------------------------------- diff --git a/odata_query/__init__.py b/odata_query/__init__.py index a7b87e5..61fb31c 100644 --- a/odata_query/__init__.py +++ b/odata_query/__init__.py @@ -1 +1 @@ -__version__ = "0.10.0b1" +__version__ = "0.10.0" diff --git a/pyproject.toml b/pyproject.toml index a25010d..ca5c671 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "odata-query" -version = "0.10.0b1" +version = "0.10.0" description = "An OData query parser and transpiler." authors = ["Oliver Hofkens "] readme = "README.rst" diff --git a/setup.cfg b/setup.cfg index a265646..463c87f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0b1 +current_version = 0.10.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:(?Pa|b|rc)(?P\d+))? diff --git a/sonar-project.properties b/sonar-project.properties index 0873cb9..bbd3003 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,6 +1,6 @@ sonar.projectKey=gorillaco_odata-query sonar.projectName=OData Query -sonar.projectVersion=0.10.0b1 +sonar.projectVersion=0.10.0 sonar.sources=./odata_query sonar.tests=./tests