Skip to content

Commit

Permalink
Merge pull request #228 from uploadcare/fix/stable-expected-behavior
Browse files Browse the repository at this point in the history
freeze httpx version
  • Loading branch information
dmitry-mukhin committed Nov 25, 2022
2 parents bc016d2 + 97361e1 commit b830ad0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ The format is based on [Keep a
Changelog](https://keepachangelog.com/en/1.0.0/), and this project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.1.0]() - 2022-10-24
## [3.1.1](https://github.com/uploadcare/pyuploadcare/compare/v3.1.0...v3.1.1) - TBD

### Changed

- freeze `httpx` dependency for py37+ (`=0.23.0`) to prevent breaking changes in processing files opened in text mode

## [3.1.0](https://github.com/uploadcare/pyuploadcare/compare/v3.0.1...v3.1.0) - 2022-10-24

### Changed

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyuploadcare"
version = "3.1.0"
version = "3.1.1"
description = "Python library for Uploadcare.com"
authors = ["Uploadcare Inc <hello@uploadcare.com>"]
readme = "README.md"
Expand Down Expand Up @@ -28,7 +28,7 @@ ucare = 'pyuploadcare.ucare_cli.main:main'
python = "^3.6.2"
httpx = [
{version = "^0.18.2", python = ">=3.6,<3.7"},
{version = "^0.23.0", python = "^3.7"}
{version = "0.23.0", python = "^3.7"}
]
pydantic = {extras = ["email"], version = "^1.8.2"}
python-dateutil = "^2.8.2"
Expand Down
2 changes: 1 addition & 1 deletion pyuploadcare/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# isort: skip_file
__version__ = "3.0.1"
__version__ = "3.1.1"

from pyuploadcare.resources.file import File # noqa: F401
from pyuploadcare.resources.file_group import FileGroup # noqa: F401
Expand Down

0 comments on commit b830ad0

Please sign in to comment.