Skip to content

Commit

Permalink
Version 1.0.1 release (#262)
Browse files Browse the repository at this point in the history
Lock "requests" and "urllib3" versions to fix incompatibility with docker-py 6.0.1

Fixes #261
  • Loading branch information
luzfcb authored May 5, 2023
1 parent 6d8bf33 commit eb8d461
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

We follow Semantic Version.

## Version 1.0.1

### Misc

- Locked version of `urllib3` to `<2` as workaround for https://github.com/docker/docker-py/issues/3113
- Locked version of `requests` to `<2.29` as workaround for https://github.com/docker/docker-py/issues/3113

## Version 1.0.0

Expand Down
16 changes: 8 additions & 8 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "docker-image-size-limit"
version = "1.0.0"
version = "1.0.1"
description = ""
license = "MIT"
authors = [
Expand Down Expand Up @@ -39,6 +39,8 @@ python = "^3.8"

docker = ">=3.7,<7.0"
humanfriendly = ">=4.18,<11.0"
urllib3 = "<2"
requests = "<2.29"

[tool.poetry.group.test.dependencies]
pytest-cov = "^4.0"
Expand Down

0 comments on commit eb8d461

Please sign in to comment.