File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 publish :
1313 name : publish
1414 runs-on : ubuntu-latest
15+ permissions :
16+ contents : read
17+ id-token : write
1518
1619 steps :
1720 - uses : actions/checkout@v6
2427 - name : Publish to PyPI
2528 run : |
2629 bash ./bin/publish-pypi
27- env :
28- PYPI_TOKEN : ${{ secrets.X_TWITTER_SCRAPER_PYPI_TOKEN || secrets.PYPI_TOKEN }}
Original file line number Diff line number Diff line change 1717 - name : Check release environment
1818 run : |
1919 bash ./bin/check-release-environment
20- env :
21- PYPI_TOKEN : ${{ secrets.X_TWITTER_SCRAPER_PYPI_TOKEN || secrets.PYPI_TOKEN }}
Original file line number Diff line number Diff line change 11{
2- "." : " 0.3.0 "
2+ "." : " 0.3.1 "
33}
Original file line number Diff line number Diff line change 11configured_endpoints : 117
22openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/xquik%2Fx-twitter-scraper-d40c57a05527faf060d21c0e013729f371d88017b10680cea7c8fd6780ffaef5.yml
33openapi_spec_hash : 597ebc460cf86740b9f6f7c95478dece
4- config_hash : c54e559eff1557fde695094e023472f9
4+ config_hash : 30ce23c9cfbf8fb8be9e5dd28a2124fa
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.3.1 (2026-04-08)
4+
5+ Full Changelog: [ v0.3.0...v0.3.1] ( https://github.com/Xquik-dev/x-twitter-scraper-python/compare/v0.3.0...v0.3.1 )
6+
7+ ### Chores
8+
9+ * update SDK settings ([ e2ff786] ( https://github.com/Xquik-dev/x-twitter-scraper-python/commit/e2ff78681cdf29128336f66240aa1ca30ec605d3 ) )
10+
311## 0.3.0 (2026-04-08)
412
513Full Changelog: [ v0.2.0...v0.3.0] ( https://github.com/Xquik-dev/x-twitter-scraper-python/compare/v0.2.0...v0.3.0 )
Original file line number Diff line number Diff line change 22
33errors=()
44
5- if [ -z " ${PYPI_TOKEN} " ]; then
6- errors+=(" The PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets." )
7- fi
8-
95lenErrors=${# errors[@]}
106
117if [[ lenErrors -gt 0 ]]; then
Original file line number Diff line number Diff line change 44rm -rf dist
55mkdir -p dist
66uv build
7- uv publish --token=$PYPI_TOKEN
7+ if [ -n " ${PYPI_TOKEN:- } " ]; then
8+ uv publish --token=$PYPI_TOKEN
9+ else
10+ uv publish
11+ fi
Original file line number Diff line number Diff line change 11[project ]
22name = " x_twitter_scraper"
3- version = " 0.3.0 "
3+ version = " 0.3.1 "
44description = " The official Python library for the x-twitter-scraper API"
55dynamic = [" readme" ]
66license = " Apache-2.0"
Original file line number Diff line number Diff line change 11# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22
33__title__ = "x_twitter_scraper"
4- __version__ = "0.3.0 " # x-release-please-version
4+ __version__ = "0.3.1 " # x-release-please-version
You can’t perform that action at this time.
0 commit comments