Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
halworsen committed Nov 18, 2023
2 parents 9789161 + fe50f06 commit 1f58c16
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

Backwards compatibility is not guaranteed in versions <1.0.0.

## v2.0.1
* Stricter pinning of dependencies
* urllib3 has been pinned to ~=1.26.14 to prevent breaking interop between requests >=2.29.0 and urllib3 >=2.0.0
* Fix docs dependencies

## v2.0.0

* Improved docstrings, including docstrings for many subpackages
Expand Down
6 changes: 6 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
sphinx==7.2.5
sphinx-rtd-theme==1.3.0
gql~=3.4.0
oauthlib~=3.2.2
requests_oauthlib~=1.3.1
requests_toolbelt~=0.10.1
cryptography~=39.0.1
urllib3~=1.26.14
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
project = 'fflogsapi'
copyright = '2023, Markus Wang Halvorsen'
author = 'Markus Wang Halvorsen'
release = '2.0.0'
version = '2.0.0'
release = '2.0.1'
version = '2.0.1'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = 'fflogsapi'
version = '2.0.0'
version = '2.0.1'
description = 'Python client for the FF Logs v2 API'
readme = 'README.md'
authors = [
Expand All @@ -15,11 +15,12 @@ classifiers = [
'Topic :: Software Development :: Libraries',
]
dependencies = [
'gql>=3.4.0',
'oauthlib>=3.2.2',
'requests_oauthlib>=1.3.1',
'requests_toolbelt>=0.10.1',
'cryptography>=39.0.1',
'gql~=3.4.0',
'oauthlib~=3.2.2',
'requests_oauthlib~=1.3.1',
'requests_toolbelt~=0.10.1',
'cryptography~=39.0.1',
'urllib3~=1.26.14',
]

[project.optional-dependencies]
Expand Down

0 comments on commit 1f58c16

Please sign in to comment.