Commit 796c033 1 parent 3bac725 commit 796c033 Copy full SHA for 796c033
File tree 4 files changed +19
-22
lines changed
4 files changed +19
-22
lines changed Original file line number Diff line number Diff line change 50
50
--wheel
51
51
--outdir dist/
52
52
.
53
- - name : Publish distribution 📦 to Test PyPI
53
+ - name : Publish distribution 📦 to PyPI
54
+ if : startsWith(github.ref, 'refs/tags')
54
55
uses : pypa/gh-action-pypi-publish@release/v1
55
56
with :
56
- password : ${{ secrets.TEST_PYPI_API_TOKEN }}
57
- repository-url : https://test.pypi.org/legacy/
58
- # - name: Publish distribution 📦 to PyPI
59
- # if: startsWith(github.ref, 'refs/tags')
60
- # uses: pypa/gh-action-pypi-publish@release/v1
61
- # with:
62
- # password: ${{ secrets.PYPI_API_TOKEN }}
57
+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## Unreleased
9
9
10
+ ### Added
11
+ - Replace with changes
12
+
13
+ ### Fixed
14
+
15
+ ### Removed
16
+
17
+ ## [ 2.23.0] - 2023-04-07
18
+
10
19
### Added
11
20
- Added optional ` encoder_cls ` argument to ` CacheFileHandler ` , which overwrite default encoder for token before writing to disk
12
21
- Integration tests for searching multiple types in multiple markets (non-user endpoints)
Original file line number Diff line number Diff line change @@ -44,6 +44,10 @@ To make sure if the import lists are stored correctly:
44
44
pip install isort
45
45
isort . -c -v
46
46
47
+ ### Changelog
48
+
49
+ Don't forget to add a short description of your change in the [ CHANGELOG] ( CHANGELOG.md )
50
+
47
51
### Publishing (by maintainer)
48
52
49
53
- Bump version in setup.py
@@ -52,26 +56,15 @@ To make sure if the import lists are stored correctly:
52
56
53
57
## Unreleased
54
58
55
- // Add new changes below
56
-
57
59
### Added
60
+ - Replace with changes
58
61
59
62
### Fixed
60
63
61
64
### Removed
62
65
63
66
- Commit changes
64
- - Package to pypi:
65
-
66
- python setup.py sdist bdist_wheel
67
- python3 setup.py sdist bdist_wheel
68
- twine check dist/*
69
- twine upload dist/*
70
-
67
+ - Push tag to trigger PyPI build & release workflow
71
68
- Create github release https://github.com/plamere/spotipy/releases with the changelog content
72
69
for the version and a short name that describes the main addition
73
70
- Verify doc uses latest https://readthedocs.org/projects/spotipy/
74
-
75
- ### Changelog
76
-
77
- Don't forget to add a short description of your change in the [ CHANGELOG] ( CHANGELOG.md )
Original file line number Diff line number Diff line change 18
18
19
19
setup (
20
20
name = 'spotipy' ,
21
- version = '2.22.1 ' ,
21
+ version = '2.23.0 ' ,
22
22
description = 'A light weight Python library for the Spotify Web API' ,
23
23
long_description = long_description ,
24
24
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments