diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 62114fb..383dc31 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. 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). +## [v0.1.1] - 2021/01/27 + +### Fixed + +- Fixed pip installation ## [v0.1.0] - 2021/01/27 ### Added diff --git a/ssllabs/__init__.py b/ssllabs/__init__.py index 5ecb575..730ff46 100644 --- a/ssllabs/__init__.py +++ b/ssllabs/__init__.py @@ -1,6 +1,6 @@ from .ssllabs import Ssllabs __license__ = "MIT" -__version__ = "0.1.0" +__version__ = "0.1.1" __all__ = ['Ssllabs', "__license__", "__version__"]