Skip to content

Commit 803bfec

Browse files
release: 0.1.2 (#4)
* chore: update SDK settings * chore: update SDK settings * release: 0.1.2 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com> Co-authored-by: Burak Bayır <burakbayir1@gmail.com>
1 parent c32ae84 commit 803bfec

9 files changed

Lines changed: 16 additions & 14 deletions

File tree

.github/workflows/publish-pypi.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,3 @@ jobs:
2828
- name: Publish to PyPI
2929
run: |
3030
bash ./bin/publish-pypi
31-
env:
32-
PYPI_TOKEN: ${{ secrets.X_TWITTER_SCRAPER_PYPI_TOKEN || secrets.PYPI_TOKEN }}

.github/workflows/release-doctor.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,3 @@ jobs:
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 }}

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.1"
2+
".": "0.1.2"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 115
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/xquik%2Fx-twitter-scraper-af60c455e2c8579c3d7f0e33c07c0b8332aa3fe8869688c47b2fbf151e271235.yml
33
openapi_spec_hash: a49d40286e54da6a4978a103b118d33f
4-
config_hash: 5992db0a471f54786de2054c4a293b27
4+
config_hash: e02b59dcc40dacf4cae770303aa73e48

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.1.2 (2026-03-30)
4+
5+
Full Changelog: [v0.1.1...v0.1.2](https://github.com/Xquik-dev/x-twitter-scraper-python/compare/v0.1.1...v0.1.2)
6+
7+
### Chores
8+
9+
* resolve merge conflict, accept codegen changes ([ee87c63](https://github.com/Xquik-dev/x-twitter-scraper-python/commit/ee87c630b5ab9e343dbf5f76a1ed3654339e7080))
10+
* update SDK settings ([8ff770f](https://github.com/Xquik-dev/x-twitter-scraper-python/commit/8ff770f05d0a8d2c21785d5c0a39d6c1cb70fd40))
11+
* update SDK settings ([80207f7](https://github.com/Xquik-dev/x-twitter-scraper-python/commit/80207f74d3d1e3dd8900bf4ad029231f603d1b3a))
12+
313
## 0.1.1 (2026-03-30)
414

515
Full Changelog: [v0.1.0...v0.1.1](https://github.com/Xquik-dev/x-twitter-scraper-python/compare/v0.1.0...v0.1.1)

bin/check-release-environment

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22

33
errors=()
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-
95
lenErrors=${#errors[@]}
106

117
if [[ lenErrors -gt 0 ]]; then

bin/publish-pypi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ set -eux
44
rm -rf dist
55
mkdir -p dist
66
uv build
7-
if [ -n "$PYPI_TOKEN" ]; then
8-
uv publish --token="$PYPI_TOKEN"
7+
if [ -n "${PYPI_TOKEN:-}" ]; then
8+
uv publish --token=$PYPI_TOKEN
99
else
1010
uv publish
1111
fi

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "x_twitter_scraper"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "The official Python library for the x-twitter-scraper API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/x_twitter_scraper/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "x_twitter_scraper"
4-
__version__ = "0.1.1" # x-release-please-version
4+
__version__ = "0.1.2" # x-release-please-version

0 commit comments

Comments
 (0)