Skip to content

Commit 3999ca2

Browse files
committed
merged master, fixed flicts
2 parents 70e099c + 2b7f5bb commit 3999ca2

5 files changed

Lines changed: 10 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 4.0.0 (2024-07-23)
2+
3+
- Updated `pydantic` package dependency to `v2`, but still using `v1` internally.
4+
- **[BREAKING CHANGE]** Python requirement is now `>= 3.8.0`, up from `>= 3.7.2`.
5+
16
# 3.0.1 (2023-06-28)
27

38
- Fixed issue with `requests_toolbelt` (`gql` dependency) using an incompatible version of `urllib3`.

docs/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
mkdocs==1.4.2 ; python_full_version >= "3.7.2" and python_version < "3.12"
2-
pygments==2.14.0 ; python_full_version >= "3.7.2" and python_version < "3.12"
1+
mkdocs==1.4.2 ; python_full_version >= "3.8.0" and python_version < "3.12"
2+
pygments==2.14.0 ; python_full_version >= "3.8.0" and python_version < "3.12"

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22

33
name = "python_anvil"
4-
version = "3.0.1"
4+
version = "4.0.0"
55
description = "Anvil API"
66
license = "MIT"
77
authors = ["Anvil Foundry Inc. <[email protected]>"]

python_anvil/api_resources/payload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ class DocumentUpload(FileCompatibleBaseModel):
180180
# This might be a bug on the `pydantic` side(?) when this object gets
181181
# converted into a dict.
182182

183-
# NOTE: This field name is referenced in the models.py file, if you change it you
183+
# NOTE: This field name is referenced in the models.py file, if you change it you
184184
# must change the reference
185185
file: Any = None
186186
fields: List[SignatureField]

0 commit comments

Comments
 (0)