Skip to content

Commit

Permalink
release: 0.8.0b1
Browse files Browse the repository at this point in the history
  • Loading branch information
hartym committed Jan 31, 2025
1 parent 47ffcfc commit e1c9065
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 13 deletions.
9 changes: 6 additions & 3 deletions docs/changelogs/0.8.0a3.rst → docs/changelogs/0.8.0b1.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version 0.8.0a3 (2025-01-16)
Version 0.8.0b1 (2025-01-31)
============================

Added
Expand All @@ -22,6 +22,7 @@ Changed
@ArthurD1)
* Storage: The Engine is now defined as a service and instantiated using dependency injection. (#72, @ArthurD1)
* Frontend: the build is now using a library to allow easier extension from other projects. (@ArthurD1)
* Circuit breaker: circuit breaker is now disabled by default, so there cannot be an unexpected behaviour.

Fixed
:::::
Expand All @@ -35,7 +36,6 @@ Fixed
* Cache: Fixed metadata update bug.
* Set timezone to UTC on postgres connect


Updated
:::::::

Expand All @@ -45,8 +45,11 @@ Updated
* bump orjson from 3.10.11 to 3.10.14
* bump pytest from 8.3.3 to 8.3.4
* bump pytest-asyncio from 0.24.0 to 0.25.2
* bump redis from 5.2.0 to 5.2.1
* bump respx from 0.21.1 to 0.22.0
* bump ruff from 0.7.4 to 0.9.1
* bump sentry-sdk from 2.18.0 to 2.19.2
* bump slack-sdk from 3.33.4 to 3.34.0
* bump sqlalchemy from 2.0.36 to 2.0.37
* bump syrupy from 4.7.2 to 4.8.0
* bump syrupy from 4.7.2 to 4.8.1
* bump watchfiles from 0.24.0 to 1.0.4
2 changes: 1 addition & 1 deletion docs/changelogs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Changelogs & History
:maxdepth: 1

unreleased
0.8.0a3
0.8.0b1
0.7.7
0.7.6
0.7.5
Expand Down
5 changes: 0 additions & 5 deletions docs/changelogs/unreleased.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,2 @@
Unreleased
==========

Changes
:::::::

* Circuit breaker: circuit breaker is now disabled by default, so there cannot be an unexpected behaviour.
2 changes: 1 addition & 1 deletion harp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def _parse_version(version: str, /, *, default=None) -> Version:

# last release
__title__ = "Core"
__version__ = "0.8.0a3"
__version__ = "0.8.0b1"
__hardcoded_version__ = __version__
__revision__ = __version__ # we can't commit the not yet known revision

Expand Down
4 changes: 2 additions & 2 deletions misc/helm/charts/harp-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: harp-proxy
description: HTTP API Runtime Proxy
type: application
version: "0.8.0a3"
appVersion: "0.8.0a3"
version: "0.8.0b1"
appVersion: "0.8.0b1"

dependencies:
- name: postgresql
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "harp-proxy"
version = "0.8.0a3"
version = "0.8.0b1"
description = "Harp is an API Runtime Proxy – A toolkit for Fast, Reliable and Observable external APIs"
authors = ["Romain Dorgueil <[email protected]>"]
readme = "README.rst"
Expand Down

0 comments on commit e1c9065

Please sign in to comment.