Skip to content

Commit 633c8d0

Browse files
committed
bump to 1.4.0
1 parent 31f1c25 commit 633c8d0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [1.3.2] - 2021-02-15
8+
## [1.4.0] - 2021-02-15
99

1010
### Added
1111

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ For a complete API reference, check out [Patch's API Reference.](https://docs.us
1515
Add the library to your `requirements.txt` file:
1616

1717
```txt
18-
patch_api >= 1.3.2
18+
patch_api >= 1.4.0
1919
```
2020

2121
Then run:

patch_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from __future__ import absolute_import
1717

18-
__version__ = "1.3.2"
18+
__version__ = "1.4.0"
1919

2020
# import ApiClient
2121
from patch_api.api_client import ApiClient

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools import setup, find_packages # noqa: H301
1313

1414
NAME = "patch-api"
15-
VERSION = "1.3.2"
15+
VERSION = "1.4.0"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install
@@ -21,9 +21,9 @@
2121
# http://pypi.python.org/pypi/setuptools
2222

2323
REQUIRES = [
24-
"urllib3 >= 1.25.3",
25-
"python-dateutil",
26-
"certifi",
24+
"urllib3 >= 1.25.3",
25+
"python-dateutil",
26+
"certifi",
2727
]
2828

2929
setup(
@@ -40,5 +40,5 @@
4040
include_package_data=True,
4141
long_description="""\
4242
The core API used to integrate with Patch's service # noqa: E501
43-
""",
43+
"""
4444
)

0 commit comments

Comments
 (0)