Skip to content

Commit 4ff9cd2

Browse files
Bump version: 0.2.228 β†’ 0.2.229
1 parent bdac6bd commit 4ff9cd2

File tree

9 files changed

+24
-13
lines changed

9 files changed

+24
-13
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
[πŸ”¬ Aignostics Python SDK](https://aignostics.readthedocs.io/en/latest/)
22

3-
# [0.2.228](https://github.com/aignostics/python-sdk/compare/v0.2.226..0.2.228) - 2025-12-07
3+
# [0.2.229](https://github.com/aignostics/python-sdk/compare/v0.2.228..0.2.229) - 2025-12-07
4+
5+
### πŸ“š Documentation
6+
7+
- *(readme)* Introduce sequence diagram - ([bdac6bd](https://github.com/aignostics/python-sdk/commit/bdac6bdc620ffa2c7c9cd5813729d41d164e2ebd))
8+
9+
### πŸ§ͺ Testing
10+
11+
- *(gui)* Enabel gui tests for macos on arm - ([45a4ef7](https://github.com/aignostics/python-sdk/commit/45a4ef702bef59cc4d7f213c25abdb8ccfa8d4c3))
12+
13+
14+
15+
* @helmut-hoffer-von-ankershoffen made their first contribution in [#323](https://github.com/aignostics/python-sdk/pull/323)
16+
17+
# [v0.2.228](https://github.com/aignostics/python-sdk/compare/v0.2.226..v0.2.228) - 2025-12-07
418

519
### πŸ“š Documentation
620

@@ -12,9 +26,6 @@
1226
- *(gui)* Refactor to enable bump to nicegui 3.3.1 - ([56eeff5](https://github.com/aignostics/python-sdk/commit/56eeff54b38f0fe4a3acf4478c32db17a484e64d))
1327

1428

15-
16-
* @helmut-hoffer-von-ankershoffen made their first contribution in [#322](https://github.com/aignostics/python-sdk/pull/322)
17-
1829
# [v0.2.226](https://github.com/aignostics/python-sdk/compare/v0.2.225..v0.2.226) - 2025-12-06
1930

2031
### ⛰️ Features

β€ŽCLI_REFERENCE.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ $ aignostics [OPTIONS] COMMAND [ARGS]...
1414
* `--show-completion`: Show completion for the current shell, to copy it or customize the installation.
1515
* `--help`: Show this message and exit.
1616

17-
πŸ”¬ Aignostics Python SDK v0.2.228 - built with love in Berlin 🐻 // Python v3.14.1
17+
πŸ”¬ Aignostics Python SDK v0.2.229 - built with love in Berlin 🐻 // Python v3.14.1
1818

1919
**Commands**:
2020

β€ŽVERSIONβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.228
1+
0.2.229

β€Žaignostics.specβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ if is_darwin:
124124
name='aignostics.app',
125125
icon='logo.ico',
126126
bundle_identifier='com.aignostics.launchpad',
127-
version='0.2.228',
127+
version='0.2.229',
128128
info_plist={
129129
'NSPrincipalClass': 'NSApplication',
130130
'NSAppleScriptEnabled': False,

β€Ždocs/source/conf.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
project = "aignostics"
3535
author = "Helmut Hoffer von Ankershoffen"
3636
copyright = f" (c) 2025-{datetime.now(UTC).year} Aignostics GmbH, Author: {author}" # noqa: A001
37-
version = "0.2.228"
37+
version = "0.2.229"
3838
release = version
3939
github_username = "aignostics"
4040
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.228",
5+
# "aignostics==0.2.229",
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.228"
3+
version = "0.2.229"
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 = [
@@ -383,7 +383,7 @@ source = ["src/"]
383383

384384

385385
[tool.bumpversion]
386-
current_version = "0.2.228"
386+
current_version = "0.2.229"
387387
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
388388
serialize = ["{major}.{minor}.{patch}"]
389389
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.228
3+
sonar.projectVersion=0.2.229
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)