File tree Expand file tree Collapse file tree 7 files changed +27
-19
lines changed
Expand file tree Collapse file tree 7 files changed +27
-19
lines changed Original file line number Diff line number Diff line change 11{
2- "." : " 1.2.0 "
2+ "." : " 1.2.1 "
33}
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.2.1 (2026-02-14)
4+
5+ Full Changelog: [ v1.2.0...v1.2.1] ( https://github.com/CASParser/cas-parser-python/compare/v1.2.0...v1.2.1 )
6+
7+ ### Chores
8+
9+ * update SDK settings ([ 0231f54] ( https://github.com/CASParser/cas-parser-python/commit/0231f540b484945a3bbc5d023a11197913e56642 ) )
10+
311## 1.2.0 (2026-02-03)
412
513Full Changelog: [ v1.1.0...v1.2.0] ( https://github.com/CASParser/cas-parser-python/compare/v1.1.0...v1.2.0 )
Original file line number Diff line number Diff line change 11[project ]
22name = " cas-parser-python"
3- version = " 1.2.0 "
3+ version = " 1.2.1 "
44description = " The official Python library for the CAS Parser API"
55dynamic = [" readme" ]
66license = " Apache-2.0"
@@ -69,7 +69,7 @@ format = { chain = [
6969 # run formatting again to fix any inconsistencies when imports are stripped
7070 " format:ruff" ,
7171]}
72- "format:docs" = " python scripts/utils/ruffen-docs.py README.md api.md"
72+ "format:docs" = " bash -c ' python scripts/utils/ruffen-docs.py README.md $(find . -type f -name api.md)' "
7373"format:ruff" = " ruff format"
7474
7575"lint" = { chain = [
Original file line number Diff line number Diff line change 1212-e file:.
1313aiohappyeyeballs==2.6.1
1414 # via aiohttp
15- aiohttp==3.13.2
15+ aiohttp==3.13.3
1616 # via cas-parser-python
1717 # via httpx-aiohttp
1818aiosignal==1.4.0
1919 # via aiohttp
2020annotated-types==0.7.0
2121 # via pydantic
22- anyio==4.12.0
22+ anyio==4.12.1
2323 # via cas-parser-python
2424 # via httpx
2525argcomplete==3.6.3
@@ -31,7 +31,7 @@ attrs==25.4.0
3131 # via nox
3232backports-asyncio-runner==1.2.0
3333 # via pytest-asyncio
34- certifi==2025.11.12
34+ certifi==2026.1.4
3535 # via httpcore
3636 # via httpx
3737colorlog==6.10.1
@@ -61,15 +61,15 @@ httpx==0.28.1
6161 # via cas-parser-python
6262 # via httpx-aiohttp
6363 # via respx
64- httpx-aiohttp==0.1.9
64+ httpx-aiohttp==0.1.12
6565 # via cas-parser-python
6666humanize==4.13.0
6767 # via nox
6868idna==3.11
6969 # via anyio
7070 # via httpx
7171 # via yarl
72- importlib-metadata==8.7.0
72+ importlib-metadata==8.7.1
7373iniconfig==2.1.0
7474 # via pytest
7575markdown-it-py==3.0.0
@@ -82,14 +82,14 @@ multidict==6.7.0
8282mypy==1.17.0
8383mypy-extensions==1.1.0
8484 # via mypy
85- nodeenv==1.9.1
85+ nodeenv==1.10.0
8686 # via pyright
8787nox==2025.11.12
8888packaging==25.0
8989 # via dependency-groups
9090 # via nox
9191 # via pytest
92- pathspec==0.12.1
92+ pathspec==1.0.3
9393 # via mypy
9494platformdirs==4.4.0
9595 # via virtualenv
@@ -115,13 +115,13 @@ python-dateutil==2.9.0.post0
115115 # via time-machine
116116respx==0.22.0
117117rich==14.2.0
118- ruff==0.14.7
118+ ruff==0.14.13
119119six==1.17.0
120120 # via python-dateutil
121121sniffio==1.3.1
122122 # via cas-parser-python
123123time-machine==2.19.0
124- tomli==2.3 .0
124+ tomli==2.4 .0
125125 # via dependency-groups
126126 # via mypy
127127 # via nox
@@ -141,7 +141,7 @@ typing-extensions==4.15.0
141141 # via virtualenv
142142typing-inspection==0.4.2
143143 # via pydantic
144- virtualenv==20.35.4
144+ virtualenv==20.36.1
145145 # via nox
146146yarl==1.22.0
147147 # via aiohttp
Original file line number Diff line number Diff line change 1212-e file:.
1313aiohappyeyeballs==2.6.1
1414 # via aiohttp
15- aiohttp==3.13.2
15+ aiohttp==3.13.3
1616 # via cas-parser-python
1717 # via httpx-aiohttp
1818aiosignal==1.4.0
1919 # via aiohttp
2020annotated-types==0.7.0
2121 # via pydantic
22- anyio==4.12.0
22+ anyio==4.12.1
2323 # via cas-parser-python
2424 # via httpx
2525async-timeout==5.0.1
2626 # via aiohttp
2727attrs==25.4.0
2828 # via aiohttp
29- certifi==2025.11.12
29+ certifi==2026.1.4
3030 # via httpcore
3131 # via httpx
3232distro==1.9.0
@@ -43,7 +43,7 @@ httpcore==1.0.9
4343httpx==0.28.1
4444 # via cas-parser-python
4545 # via httpx-aiohttp
46- httpx-aiohttp==0.1.9
46+ httpx-aiohttp==0.1.12
4747 # via cas-parser-python
4848idna==3.11
4949 # via anyio
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def is_union(tp: Optional[Type[Any]]) -> bool:
2626 else :
2727 import types
2828
29- return tp is Union or tp is types .UnionType
29+ return tp is Union or tp is types .UnionType # type: ignore[comparison-overlap]
3030
3131
3232def is_typeddict (tp : Type [Any ]) -> bool :
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__ = "cas_parser"
4- __version__ = "1.2.0 " # x-release-please-version
4+ __version__ = "1.2.1 " # x-release-please-version
You can’t perform that action at this time.
0 commit comments