Skip to content

Commit a9fb776

Browse files
authored
Merge pull request #480 from requests/release-1.3.1
Release 1.3.1
2 parents 05a25a9 + b0857c8 commit a9fb776

File tree

3 files changed

+33
-4
lines changed

3 files changed

+33
-4
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Publish Tags on PyPi when GitHub creates a release
2+
on:
3+
push:
4+
tags:
5+
- 'v**'
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Set up Python 3.9
12+
uses: actions/setup-python@v2
13+
with:
14+
python-version: 3.9
15+
- name: Install upload dependencies
16+
run: |
17+
python -m pip install --upgrade pip setuptools wheel twine
18+
- name: Build and publish
19+
env:
20+
TWINE_USERNAME: __token__
21+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
22+
run: |
23+
python setup.py sdist bdist_wheel
24+
twine upload dist/*

HISTORY.rst

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
History
22
-------
33

4-
UNRELEASED
5-
++++++++++
4+
v1.3.1 (21 January 2022)
5+
++++++++++++++++++++++++
66

77
- Add initial support for OAuth Mutual TLS (draft-ietf-oauth-mtls)
8-
- Removed outdated LinkedIn Compliance Fixes
8+
- Add eBay compliance fix
9+
- Add Spotify OAuth 2 Tutorial
10+
- Add support for python 3.8, 3.9
11+
- Fixed LinkedIn Compliance Fixes
12+
- Fixed ReadTheDocs Documentation and sphinx errors
13+
- Moved pipeline to GitHub Actions
914

1015
v1.3.0 (6 November 2019)
1116
++++++++++++++++++++++++

requests_oauthlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from .oauth2_auth import OAuth2
66
from .oauth2_session import OAuth2Session, TokenUpdated
77

8-
__version__ = "1.3.0"
8+
__version__ = "1.3.1"
99

1010
import requests
1111

0 commit comments

Comments
 (0)