Skip to content

Commit 9e20da2

Browse files
authored
Merge pull request #2 from NanoNets/release-please--branches--main--changes--next
release: 0.1.1
2 parents f7910c8 + e8a6052 commit 9e20da2

8 files changed

Lines changed: 15 additions & 10 deletions

File tree

.github/workflows/publish-pypi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ jobs:
1313
name: publish
1414
runs-on: ubuntu-latest
1515
permissions:
16+
1617
id-token: write
18+
contents: read
1719

1820
steps:
1921
- uses: actions/checkout@v6

.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.DOCSTRANGE_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.0"
2+
".": "0.1.1"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 9
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/nanonets%2Fdocstrange-a418fe45369669cc2d14b549ee010f3a7ee52f6e47fea3489e560d33064be099.yml
33
openapi_spec_hash: 02f7f52faae1eb42188c290c32c25f10
4-
config_hash: b1979c16c99baf59cbbf8c7944a47297
4+
config_hash: 61ade82f6ddf75edd008789d19f04a3a

CHANGELOG.md

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

3+
## 0.1.1 (2026-02-13)
4+
5+
Full Changelog: [v0.1.0...v0.1.1](https://github.com/NanoNets/docstrange-python/compare/v0.1.0...v0.1.1)
6+
7+
### Chores
8+
9+
* update SDK settings ([4be656b](https://github.com/NanoNets/docstrange-python/commit/4be656b40d112b38670bbaaa8fc6a7eed3bf220c))
10+
* update SDK settings ([b8b57c1](https://github.com/NanoNets/docstrange-python/commit/b8b57c1b29eed833b8b7b4a2b27deb8f6d39e302))
11+
312
## 0.1.0 (2026-02-13)
413

514
Full Changelog: [v0.0.1...v0.1.0](https://github.com/NanoNets/docstrange-python/compare/v0.0.1...v0.1.0)

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

pyproject.toml

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

src/docstrange/_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__ = "docstrange"
4-
__version__ = "0.1.0" # x-release-please-version
4+
__version__ = "0.1.1" # x-release-please-version

0 commit comments

Comments
 (0)