From 219a3d7afd437954c03d5ce4a1e3768c07577c75 Mon Sep 17 00:00:00 2001 From: Romain Dorgueil Date: Thu, 12 Sep 2024 16:25:17 +0200 Subject: [PATCH] release: 0.7.0a2 --- docs/changelogs/{0.7.0a1.rst => 0.7.0a2.rst} | 4 +++- docs/changelogs/index.rst | 2 +- docs/changelogs/unreleased.rst | 7 ------- harp/__init__.py | 2 +- misc/helm/charts/harp-proxy/Chart.yaml | 2 +- pyproject.toml | 2 +- 6 files changed, 7 insertions(+), 12 deletions(-) rename docs/changelogs/{0.7.0a1.rst => 0.7.0a2.rst} (92%) diff --git a/docs/changelogs/0.7.0a1.rst b/docs/changelogs/0.7.0a2.rst similarity index 92% rename from docs/changelogs/0.7.0a1.rst rename to docs/changelogs/0.7.0a2.rst index 50d0b08f..d3b88f52 100644 --- a/docs/changelogs/0.7.0a1.rst +++ b/docs/changelogs/0.7.0a2.rst @@ -1,4 +1,4 @@ -Version 0.7.0a1 (2024-09-06) +Version 0.7.0a2 (2024-09-12) ============================ Added @@ -10,6 +10,8 @@ Added closer to httpx interfaces. * Core/Services: Services definitions are now using a declarative configuration format, that can be loaded by applications. A sphinx extension was added to automatically document service definitions from applications. +* Core/Services: Ability to include another services.yml file, either by absolute path (using + "!include /path/to/other.yml") or from a python package path, using "!include services.yml from my.package" syntax. * Notifications: Implements a simple way to send notifications to a slack or a google chat webhook to catch errors. * Proxy: Added support for multiple remote urls for a given endpoint. * Proxy: Added support for default/fallback pools in remote configuration for resilience. diff --git a/docs/changelogs/index.rst b/docs/changelogs/index.rst index a6c50409..fefb04c7 100644 --- a/docs/changelogs/index.rst +++ b/docs/changelogs/index.rst @@ -5,7 +5,7 @@ Changelogs & History :maxdepth: 1 unreleased - 0.7.0a1 + 0.7.0a2 0.6.1 0.6.0 old/index diff --git a/docs/changelogs/unreleased.rst b/docs/changelogs/unreleased.rst index e68c2359..86e986aa 100644 --- a/docs/changelogs/unreleased.rst +++ b/docs/changelogs/unreleased.rst @@ -1,9 +1,2 @@ Unreleased ========== - -Added -::::: - -- Core/Services: Ability to include another services.yml file, either by absolute path (using - "!include /path/to/other.yml") or from a python package path, using "!include services.yml from my.package" syntax. -- Core/Logging: The root logging level is now configurable using LOGGING=... diff --git a/harp/__init__.py b/harp/__init__.py index 249d0b2b..48013b8f 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.0a1" +__version__ = "0.7.0a2" __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 2ad00303..805527e3 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.0a1" +appVersion: "0.7.0a2" dependencies: - name: postgresql diff --git a/pyproject.toml b/pyproject.toml index c8b70ff5..d20719c4 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.0a1" +version = "0.7.0a2" description = "Harp is an API Runtime Proxy – A toolkit for Fast, Reliable and Observable external APIs" authors = ["Romain Dorgueil "] readme = "README.rst"