Skip to content

Commit 1d18294

Browse files
Bump version to 0.13.0 (#65)
* Bump version to 0.13.0 * update MIN_SERVER_VERSION
1 parent e0cc854 commit 1d18294

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
CHANGELOG
22
=========
33

4+
## 0.13.0 (2026-01-23)
5+
- [#64](https://github.com/codeocean/codeocean-sdk-python/pull/64) feat: Code Ocean version 4.1 functionality
6+
- **Minimum Code Ocean platform version updated to `4.1.0`.**
7+
48
## 0.12.0 (2025-10-20)
59
- [#61](https://github.com/codeocean/codeocean-sdk-python/pull/61) feat: add search_pipelines method
610

RELEASE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
1. Open a PR with the following changes:
44
1. Bump the version in [pyproject.toml](pyproject.toml).
55
1. Update the [CHANGELOG.md](CHANGELOG.md).
6+
1. If the change requires a newer Code Ocean server version, update `MIN_SERVER_VERSION` in [client.py](src/codeocean/client.py).
67
1. Commit the updates with the message `Bump version to X.Y.Z`.
78
1. Merge the PR.
89
1. Locally, sync your clone with GitHub:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "codeocean"
7-
version = "0.12.0"
7+
version = "0.13.0"
88
authors = [
99
{ name="Code Ocean", email="dev@codeocean.com" },
1010
]

src/codeocean/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class CodeOcean:
3838
agent_id: Optional[str] = None
3939

4040
# Minimum server version required by this SDK
41-
MIN_SERVER_VERSION = "4.0.0"
41+
MIN_SERVER_VERSION = "4.1.0"
4242

4343
def __post_init__(self):
4444
self.session = BaseUrlSession(base_url=f"{self.domain}/api/v1/")

0 commit comments

Comments
 (0)