Skip to content

Commit

Permalink
Merge pull request #2049 from Yelinz/920
Browse files Browse the repository at this point in the history
chore(release): v9.2.0
  • Loading branch information
winged committed Aug 15, 2023
2 parents a6ca27e + 4e000dd commit c501360
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# v9.2.0 (15 August 2023)
### Feature
* **core:** Add meta intersection filter ([`1a54a7f`](https://github.com/projectcaluma/caluma/commit/1a54a7f1798d4f816a29e2c68935294899fa2a88))

### Fix
* **analytics:** Fix meta field extraction ([`704ffb9`](https://github.com/projectcaluma/caluma/commit/704ffb907d7863f9928fe10bb8826e226c286cb0))

# v9.1.0 (17 July 2023)

### Feature
Expand Down
20 changes: 8 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "caluma"
version = "9.1.0"
version = "9.2.0"
description = "Caluma Service providing GraphQL API"
homepage = "https://caluma.io"
repository = "https://github.com/projectcaluma/caluma"
Expand All @@ -15,9 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
]
include = ["CHANGELOG.md"]
exclude = [
"caluma/**/tests",
]
exclude = ["caluma/**/tests"]

[tool.poetry.dependencies]
python = "^3.8.1"
Expand Down Expand Up @@ -78,10 +76,7 @@ reuse = "1.1.2"
syrupy = "4.0.2"

[tool.isort]
skip = [
"migrations",
"snapshots",
]
skip = ["migrations", "snapshots"]
known_first_party = ["caluma"]
known_third_party = ["dateparser"]
multi_line_output = 3
Expand All @@ -105,12 +100,12 @@ env = [
filterwarnings = [
"error::DeprecationWarning",
"error::PendingDeprecationWarning",
"ignore:The 'arrayconnection' module is deprecated:DeprecationWarning", # deprecation in graphene
"ignore:distutils Version classes are deprecated:DeprecationWarning", # deprecation in pytest-freezegun
"ignore:The 'arrayconnection' module is deprecated:DeprecationWarning", # deprecation in graphene
"ignore:distutils Version classes are deprecated:DeprecationWarning", # deprecation in pytest-freezegun
"ignore:'django_extensions' defines default_app_config:PendingDeprecationWarning", # deprecation in django_extensions
"ignore::requests.packages.urllib3.exceptions.InsecureRequestWarning", # MinIO tests do "insecure" requests - that's ok
"ignore::requests.packages.urllib3.exceptions.InsecureRequestWarning", # MinIO tests do "insecure" requests - that's ok
"ignore:invalid escape sequence",
"ignore:pkg_resources is deprecated as an API:DeprecationWarning", # deprecation in django-simple-history
"ignore:pkg_resources is deprecated as an API:DeprecationWarning", # deprecation in django-simple-history
]

[tool.coverage.run]
Expand All @@ -136,6 +131,7 @@ show_missing = true

[tool.semantic_release]
version_source = "tag"
version_toml = ["pyproject.toml:tool.poetry.version"]

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit c501360

Please sign in to comment.