Skip to content

Commit d8c97e7

Browse files
committed
chore: Upgrade version and changelog
1 parent 5deef49 commit d8c97e7

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

.pep8speaks.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# File : .pep8speaks.yml
22

33
scanner:
4-
diff_only: True # Errors caused by only the patch are shown
4+
diff_only: True # Errors caused by only the patch are shown
5+
linter: pycodestyle # Alternative option - flake8
6+
7+
pycodestyle: # Same as scanner.linter value. Other option is flake8
8+
max-line-length: 99 # Default is 79 in PEP 8
9+
ignore: # Errors and warnings to ignore
10+
- E203 # whitespace before ':'
11+
- E501 # line too long
12+
- W503 # line break before binary operator
13+
- F401 # module imported but unused
14+
- F403 # 'from module import *' used; unable to detect undefined names

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [5.1.6] - 2023-10-05
8+
9+
### Changed
10+
11+
- `pyopenssl` dependency upgraded from `pyopenssl~=23.0` to `pyopenssl~=23.2`
12+
- `pytz` dependency upgraded from `pytz~=2019.3` to `pytz~=2023.3`
13+
- `responses` dependency upgraded from `responses~=0.22.0` to `responses~=0.23.3`
14+
- `urllib3` dependency upgraded from `urllib3~=1.26.5` to `urllib3~=2.0.6`
15+
- Log level demoted to warning while closing socket in sender data.
16+
717
## [5.1.5] - 2023-08-21
818

919
### Changed

devo/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__description__ = "Devo Python Library."
22
__url__ = "http://www.devo.com"
3-
__version__ = "5.1.5"
3+
__version__ = "5.1.6"
44
__author__ = "Devo"
55
__author_email__ = "support@devo.com"
66
__license__ = "MIT"

0 commit comments

Comments
 (0)