Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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).

## [1.3.1] - 2021-02-09

### Fixed

- Adds missing dependency.

## [1.3.0] - 2021-02-08

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For a complete API reference, check out [Patch's API Reference.](https://docs.us

Add the library to your `requirements.txt` file:
```txt
patch_api >= 1.3.0
patch_api >= 1.3.1
```

Then run:
Expand Down
2 changes: 1 addition & 1 deletion patch_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

from __future__ import absolute_import

__version__ = "1.3.0"
__version__ = "1.3.1"

# import ApiClient
from patch_api.api_client import ApiClient
Expand Down
2 changes: 1 addition & 1 deletion patch_api/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def to_debug_report(self):
"OS: {env}\n"
"Python Version: {pyversion}\n"
"Version of the API: v1\n"
"SDK Package Version: 1.3.0".format(env=sys.platform, pyversion=sys.version)
"SDK Package Version: 1.3.1".format(env=sys.platform, pyversion=sys.version)
)

def get_host_settings(self):
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,15 @@
from setuptools import setup, find_packages # noqa: H301

NAME = "patch-api"
VERSION = "1.3.0"
VERSION = "1.3.1"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
]
REQUIRES = ["urllib3 >= 1.25.3", "python-dateutil", "certifi"]

setup(
name=NAME,
Expand Down