Skip to content

Commit

Permalink
Version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
albertodonato committed Jan 8, 2025
1 parent b6d52cf commit 1dd563e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
v3.1.0 - 2025-01-08
===================

- Support passing multiple configuration files (#108).
- Support YAML tags for ``env``, ``file``, and ``include`` (#188).

**NOTE**:
The ``env:`` and ``file:`` prefixes for DSNs string form is now deprecated in
favor of the corresponding tags, and will be dropped in the next major release.


v3.0.0 - 2024-12-30
===================

Expand Down
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,12 @@ optional-dependencies.testing = [
"pytest-mock",
"pytest-structlog",
]
urls.changelog = "https://github.com/albertodonato/query-exporter/blob/main/CHANGES.rst"
urls.homepage = "https://github.com/albertodonato/query-exporter"
urls.repository = "https://github.com/albertodonato/query-exporter"
urls.Changelog = "https://github.com/albertodonato/query-exporter/blob/main/CHANGES.rst"
urls.Documentation = "https://github.com/albertodonato/query-exporter"
urls.Homepage = "https://github.com/albertodonato/query-exporter"
urls."Issue Tracker" = "https://github.com/albertodonato/query-exporter/issues"
urls."Release Notes" = "https://github.com/albertodonato/query-exporter/blob/main/CHANGES.rst"
urls."Source Code" = "https://github.com/albertodonato/query-exporter"
scripts.query-exporter = "query_exporter.main:script"

[tool.setuptools.dynamic]
Expand Down
2 changes: 1 addition & 1 deletion query_exporter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Export Prometheus metrics generated from SQL queries."""

__version__ = "3.0.0"
__version__ = "3.1.0"

0 comments on commit 1dd563e

Please sign in to comment.