Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Gauvrit committed Dec 20, 2023
1 parent a2cb665 commit ef04e1a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
## Release 1.0.1 (2023-05-22)
## Release 1.1.0 - Released on 2023-12-20

- Add a environment variable CELERY_PROMETHEUS_COLLECTOR_ADDR to configure the collector address.


## Release 1.0.1 - Released on 2023-05-22

- Fix usage if the default registry REGISTRY was used

## Release 1.0.0 (2023-03-0822)
## Release 1.0.0 - Released on 2023-03-0822

- Add typing support
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "celery-prometheus"
version = "1.0.1"
version = "1.1.0"
description = "Celery with your own prometheus metrics"
authors = ["Guillaume Gauvrit <[email protected]>"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions scripts/write_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
import celery_prometheus

header = (
f"## {celery_prometheus.__version__} - "
f"## Release {celery_prometheus.__version__} - "
f"Released on {datetime.datetime.now().date().isoformat()}"
)
with open("CHANGELOG.md.new", "w") as changelog:
changelog.write(header)
changelog.write("\n")
changelog.write("* please write here \n")
changelog.write("- please write here \n\n")

0 comments on commit ef04e1a

Please sign in to comment.