From 12953d2c1b69e9e7aa06d4a08e2548c9b82dca00 Mon Sep 17 00:00:00 2001 From: Romain Dorgueil Date: Sat, 16 Nov 2024 12:10:14 +0100 Subject: [PATCH] release: 0.7.7 --- docs/changelogs/0.7.7.rst | 28 ++++++++++++++++++++++++++ docs/changelogs/index.rst | 1 + docs/changelogs/unreleased.rst | 7 ------- harp/__init__.py | 2 +- misc/helm/charts/harp-proxy/Chart.yaml | 4 ++-- pyproject.toml | 2 +- 6 files changed, 33 insertions(+), 11 deletions(-) create mode 100644 docs/changelogs/0.7.7.rst diff --git a/docs/changelogs/0.7.7.rst b/docs/changelogs/0.7.7.rst new file mode 100644 index 00000000..60b56bb0 --- /dev/null +++ b/docs/changelogs/0.7.7.rst @@ -0,0 +1,28 @@ +Version 0.7.7 (2024-11-16) +========================== + +Fixed +::::: + +* DX: Add the ability to use --set x=y or --set x y (both equivalent) to all commands (@masterivanic, #590) +* UI: Correctly display header values containing a semicolon character (#577, @ArthurD1) +* UI: On transactions page, tpdex filter now includes both sides of the selected range (#391, @ArthurD1) + +Changed +::::::: + +* DX: Improve `harp create project` prompts (@Lenormju) + +Updated +::::::: + +* bump aiohttp from 3.10.10 to 3.11.2 +* bump alembic from 1.13.3 to 1.14.0 +* bump asgi-tools from 1.0.10 to 1.1.0 +* bump hishel from 0.0.33 to 0.1.1 +* bump http-router from 4.1.2 to 5.0.8 +* bump orjson from 3.10.10 to 3.10.11 +* bump rich from 13.9.3 to 13.9.4 +* bump rich-click from 1.8.3 to 1.8.4 +* bump ruff from 0.7.1 to 0.7.4 +* bump sentry-sdk from 2.17.0 to 2.18.0 diff --git a/docs/changelogs/index.rst b/docs/changelogs/index.rst index e86d9b86..8689103a 100644 --- a/docs/changelogs/index.rst +++ b/docs/changelogs/index.rst @@ -5,6 +5,7 @@ Changelogs & History :maxdepth: 1 unreleased + 0.7.7 0.7.6 0.7.5 0.7.4 diff --git a/docs/changelogs/unreleased.rst b/docs/changelogs/unreleased.rst index 9028cef5..86e986aa 100644 --- a/docs/changelogs/unreleased.rst +++ b/docs/changelogs/unreleased.rst @@ -1,9 +1,2 @@ Unreleased ========== - -Fixed -::::: - -* DX: Add the ability to use --set x=y or --set x y (both equivalent) to all commands (@masterivanic, #590) -* UI: Correctly display header values containing a semicolon character (#577, @ArthurD1) -* UI: On transactions page, tpdex filter now includes both sides of the selected range (#391, @ArthurD1) diff --git a/harp/__init__.py b/harp/__init__.py index a0b3a528..5b71fb29 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.6" +__version__ = "0.7.7" __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 46ed626d..a7da403d 100644 --- a/misc/helm/charts/harp-proxy/Chart.yaml +++ b/misc/helm/charts/harp-proxy/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: harp-proxy description: HTTP API Runtime Proxy type: application -version: "0.7.4" -appVersion: "0.7.6" +version: "0.7.7" +appVersion: "0.7.7" dependencies: - name: postgresql diff --git a/pyproject.toml b/pyproject.toml index e7f77623..1632c0d5 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.6" +version = "0.7.7" description = "Harp is an API Runtime Proxy – A toolkit for Fast, Reliable and Observable external APIs" authors = ["Romain Dorgueil "] readme = "README.rst"