From 8831ad2749f0f416f2c44735f8058a07aae7913a Mon Sep 17 00:00:00 2001 From: Michael van Rooijen Date: Fri, 26 Jul 2024 15:11:15 +0800 Subject: [PATCH] Release v1.0.2 --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index def80ad..2385722 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v1.0.2 + +* Fix issue where Django's HttpResponse object doesn't accept the headers keyword argument. Headers are now applied to the response object directly. + ## v1.0.1 * Add support for dashes in `Worker` names to match the Procfile process naming format. `Worker` is implicitly used when configuring HireFire using the `Configuration#dyno` method. diff --git a/pyproject.toml b/pyproject.toml index 2e4af2b..7c01062 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hirefire-resource" -version = "1.0.1" +version = "1.0.2" description = "HireFire integration library for Python applications" authors = ["Michael van Rooijen "] license = "MIT"