Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-mukhin committed Nov 25, 2022
1 parent e480f0f commit 25ce62d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,24 @@ 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.1](https://github.com/uploadcare/pyuploadcare/compare/v3.1.0...v3.1.1) - TBD
## [3.2.0](https://github.com/uploadcare/pyuploadcare/compare/v3.1.0...v3.2.0) - TBD


### Changed

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

### Fixed

- Akamai signed URL generation

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

### Changed

- Bumped `httpx` dependency for py37+
- Add `follow_redirects` argument for Client request method
- Using `allow_redirects` argument is allowed, but will cause a deprecating warning
- Using `allow_redirects` argument is allowed, but will cause a deprecating warning
- Bumped `black` dependency

## [3.0.1](https://github.com/uploadcare/pyuploadcare/compare/v3.0.0...v3.0.1) - 2022-10-06
Expand Down Expand Up @@ -275,12 +280,12 @@ UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5 ...
- Widget was updated up to *0.8.1.2*.

- It was invoking `File.store()`, `FileGroup.store()` methods on every model instance saving, e.g.:

``` python
photo.title = 'new title'
photo.save()
```

Now it happens while saving by form, namely by calling
`your_model_form.is_valid()`. There is other thing that can trigger
storing -- calling `photo.full_clean()` directly.
Expand Down
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 = "pyuploadcare"
version = "3.1.1"
version = "3.2.0"
description = "Python library for Uploadcare.com"
authors = ["Uploadcare Inc <[email protected]>"]
readme = "README.md"
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.1.1"
__version__ = "3.2.0"

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

0 comments on commit 25ce62d

Please sign in to comment.