Skip to content

Commit

Permalink
Bump version and updated CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
jadchaar committed May 9, 2021
1 parent 8e635fc commit b0adb62
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Expand Up @@ -25,7 +25,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/asottile/pyupgrade
rev: v2.11.0
rev: v2.15.0
hooks:
- id: pyupgrade
args: [--py36-plus]
Expand All @@ -39,12 +39,12 @@ repos:
- id: rst-directive-colons
- id: rst-inline-touching-normal
- repo: https://github.com/psf/black
rev: 20.8b1
rev: 21.5b0
hooks:
- id: black
args: [--quiet, --target-version=py36]
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.0
rev: 3.9.2
hooks:
- id: flake8
additional_dependencies: [flake8-bugbear]
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,19 @@
# Changelog

## 4.1.0 - 5/9/2021

### New

- HTTP connections are now re-used when possible (using [`httpx.Client()`](https://www.python-httpx.org/advanced/#client-instances)) to improve download performance.

### Fixed

- Requests are now retried at most 5 times if a request fails. This should solve the `500 Server Error`s that some users are experiencing when downloading a large number of filings.

### Changed

- Replaced the internal `requests` package with [`httpx`](https://github.com/encode/httpx), a more modern and performant alternative.

## 4.0.3 - 4/6/2021

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion sec_edgar_downloader/_version.py
@@ -1 +1 @@
__version__ = "4.0.3"
__version__ = "4.1.0"

0 comments on commit b0adb62

Please sign in to comment.