diff --git a/docs/changelogs/0.7.0a2.rst b/docs/changelogs/0.7.0.rst similarity index 91% rename from docs/changelogs/0.7.0a2.rst rename to docs/changelogs/0.7.0.rst index d3b88f52..1a4981f9 100644 --- a/docs/changelogs/0.7.0a2.rst +++ b/docs/changelogs/0.7.0.rst @@ -1,5 +1,5 @@ -Version 0.7.0a2 (2024-09-12) -============================ +Version 0.7.0 (2024-09-17) +========================== Added ::::: @@ -39,14 +39,6 @@ Changed * DX: adds a ``harp examples list`` command to list available examples * DX/Helm: adds the ability to override environment in helm chart's values -Updated -::::::: - -* chore(deps): bump rich from 13.7.1 to 13.8.0 -* chore(deps-dev): bump syrupy from 4.6.1 to 4.7.1 -* chore(deps-dev): bump ruff from 0.6.1 to 0.6.2 -* chore(deps-dev): bump pytest-asyncio from 0.21.2 to 0.24.0 - Fixed ::::: diff --git a/docs/changelogs/index.rst b/docs/changelogs/index.rst index fefb04c7..220b19e1 100644 --- a/docs/changelogs/index.rst +++ b/docs/changelogs/index.rst @@ -5,7 +5,7 @@ Changelogs & History :maxdepth: 1 unreleased - 0.7.0a2 + 0.7.0 0.6.1 0.6.0 old/index diff --git a/harp/__init__.py b/harp/__init__.py index 48013b8f..e3bb46a2 100644 --- a/harp/__init__.py +++ b/harp/__init__.py @@ -51,7 +51,7 @@ def _parse_version(version: str, /, *, default=None) -> Version: # last release __title__ = "Core" -__version__ = "0.7.0a2" +__version__ = "0.7.0" __hardcoded_version__ = __version__ __revision__ = __version__ # we can't commit the not yet known revision diff --git a/misc/helm/charts/harp-proxy/Chart.yaml b/misc/helm/charts/harp-proxy/Chart.yaml index 805527e3..52d4403d 100644 --- a/misc/helm/charts/harp-proxy/Chart.yaml +++ b/misc/helm/charts/harp-proxy/Chart.yaml @@ -3,7 +3,7 @@ name: harp-proxy description: HTTP API Runtime Proxy type: application version: "0.7.0-alpha" -appVersion: "0.7.0a2" +appVersion: "0.7.0" dependencies: - name: postgresql diff --git a/pyproject.toml b/pyproject.toml index 28640755..3c97fdc5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "harp-proxy" -version = "0.7.0a2" +version = "0.7.0" description = "Harp is an API Runtime Proxy – A toolkit for Fast, Reliable and Observable external APIs" authors = ["Romain Dorgueil "] readme = "README.rst"