Skip to content

Commit fb49909

Browse files
Bump version: 0.2.100 → 0.2.101
1 parent d374381 commit fb49909

File tree

8 files changed

+24
-10
lines changed

8 files changed

+24
-10
lines changed

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,25 @@
11
[🔬 Aignostics Python SDK](https://aignostics.readthedocs.io/en/latest/)
22

3-
# [0.2.100](https://github.com/aignostics/python-sdk/compare/v0.2.99..0.2.100) - 2025-07-15
3+
# [0.2.101](https://github.com/aignostics/python-sdk/compare/v0.2.99..0.2.101) - 2025-07-15
4+
5+
### ⚙️ Miscellaneous Tasks
6+
7+
- *(deps)* Update ghcr.io/astral-sh/uv docker tag to v0.7.20 ([#59](https://github.com/orhun/git-cliff/issues/59)) - ([987828d](https://github.com/aignostics/python-sdk/commit/987828d3b2b25acfc74938c50f3b8c55e3b7805c))
8+
- *(deps)* Update ghcr.io/astral-sh/uv docker tag to v0.7.15 ([#54](https://github.com/orhun/git-cliff/issues/54)) - ([65a9b24](https://github.com/aignostics/python-sdk/commit/65a9b247f9fa1821a12d2f95685d70a0e7ae2be1))
9+
- *(deps)* Bump astral-sh/setup-uv from 6.3.0 to 6.3.1 ([#55](https://github.com/orhun/git-cliff/issues/55)) - ([1ee922e](https://github.com/aignostics/python-sdk/commit/1ee922ee3aefb89256f42652416fc326d9bef383))
10+
- Renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> - ([987828d](https://github.com/aignostics/python-sdk/commit/987828d3b2b25acfc74938c50f3b8c55e3b7805c))
11+
- Helmut Hoffer von Ankershoffen né Oertel <[email protected]> - ([65a9b24](https://github.com/aignostics/python-sdk/commit/65a9b247f9fa1821a12d2f95685d70a0e7ae2be1))
12+
- Dependabot[bot] <[email protected]> - ([1ee922e](https://github.com/aignostics/python-sdk/commit/1ee922ee3aefb89256f42652416fc326d9bef383))
13+
- Dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> - ([1ee922e](https://github.com/aignostics/python-sdk/commit/1ee922ee3aefb89256f42652416fc326d9bef383))
414

515
### 🛡️ Security
616

7-
- *(dep)* Override aiohttp to 3.12.14 given vulnerability GHSA-9548-qrrj-x5pj - ([25f1929](https://github.com/aignostics/python-sdk/commit/25f1929186b82efb7e7015a0acfe6afd35a49bbf))
17+
- *(dep)* Override aiohttp to 3.12.14 given vulnerability GHSA-9548-qrrj-x5pj - ([c9cefae](https://github.com/aignostics/python-sdk/commit/c9cefae37c255b05c1453a0a795695f55b7d3c44))
18+
19+
820

21+
* @renovate[bot] made their first contribution in [#59](https://github.com/aignostics/python-sdk/pull/59)
22+
* @dependabot[bot] made their first contribution in [#55](https://github.com/aignostics/python-sdk/pull/55)
923

1024
# [v0.2.99](https://github.com/aignostics/python-sdk/compare/v0.2.98..v0.2.99) - 2025-07-10
1125

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.100
1+
0.2.101

aignostics.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ app = BUNDLE(
7070
name='aignostics.app',
7171
icon='logo.ico',
7272
bundle_identifier='com.aignostics.launchpad',
73-
version='0.2.100',
73+
version='0.2.101',
7474
info_plist={
7575
'NSPrincipalClass': 'NSApplication',
7676
'NSAppleScriptEnabled': False,

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
project = "aignostics"
2828
author = "Helmut Hoffer von Ankershoffen"
2929
copyright = f" (c) 2025-{datetime.now(UTC).year} Aignostics GmbH, Author: {author}" # noqa: A001
30-
version = "0.2.100"
30+
version = "0.2.101"
3131
release = version
3232
github_username = "aignostics"
3333
github_repository = "python-sdk"

examples/notebook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# requires-python = ">=3.13"
33
# dependencies = [
44
# "marimo",
5-
# "aignostics==0.2.100",
5+
# "aignostics==0.2.101",
66
# ]
77
# ///
88

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "aignostics"
3-
version = "0.2.100"
3+
version = "0.2.101"
44
description = "🔬 Python SDK providing access to the Aignostics Platform. Includes Aignostics Launchpad (Desktop Application), Aignostics CLI (Command-Line Interface), example notebooks, and Aignostics Client Library."
55
readme = "README.md"
66
authors = [
@@ -354,7 +354,7 @@ source = ["src/"]
354354

355355

356356
[tool.bumpversion]
357-
current_version = "0.2.100"
357+
current_version = "0.2.101"
358358
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
359359
serialize = ["{major}.{minor}.{patch}"]
360360
search = "{current_version}"

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
sonar.projectKey=aignostics_python-sdk
22
sonar.organization=aignostics
3-
sonar.projectVersion=0.2.100
3+
sonar.projectVersion=0.2.101
44
sonar.projectDescription=🔬 Python SDK providing access to Aignostics AI services.
55
sonar.links.homepage=https://aignostics.readthedocs.io/en/latest/
66
sonar.links.scm=https://github.com/aignostics/python-sdk

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)