Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
costrouc committed Aug 2, 2022
1 parent 3a69452 commit c70b964
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

## [0.2.0] - 2022-08-01

### Added

- tests for python 3.10
- tests for pushing images to dockerhub and quay.io
- properly implemented authentication for basic and token based authentication

### Fixed

- no longer trust the docker checksum for content recompute each time

## [0.1.2] - 2021-10-21

### Added
Expand Down
2 changes: 1 addition & 1 deletion environment-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ dependencies:
- pydantic
# dev
- pytest
- black ==21.5b0
- black ==22.6.0
- flake8
2 changes: 1 addition & 1 deletion python_docker/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.2"
__version__ = "0.2.0"
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name="python-docker",
version="0.1.2",
version="0.2.0",
description="Python Docker",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -23,6 +23,7 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
license_files=('LICENSE',),
Expand Down

0 comments on commit c70b964

Please sign in to comment.