Skip to content

Commit c166975

Browse files
committed
build: prepare release 25.10.1
1 parent 71a6fcc commit c166975

File tree

5 files changed

+22
-10
lines changed

5 files changed

+22
-10
lines changed

CHANGELOG.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,23 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## Unreleased
5+
## 25.10.1 - 2025-10-30
66

7-
- Documented that Python recordings now run through the db backend using the active interpreter, including CLI help and installation guidance for the `codetracer_python_recorder` package.
8-
- Added a Python getting-started guide covering recorder installation, `ct record`, and replay workflows.
9-
- `ct record` now verifies that `codetracer_python_recorder` is importable before launching the db backend and prints remediation hints when the module is missing or broken.
10-
- CI smoke test for the Python recorder validates metadata fields and exercises failure paths for missing interpreters or recorder modules.
7+
We are releasing our new version enabling support for Python recordings!
8+
9+
They are based on our [codetracer-python-recorder](https://github.com/metacraft-labs/codetracer-python-recorder)
10+
and one needs to install it (e.g. with `pip install codetracer-python-recorder`) to be able to use `ct record <script.py>`
11+
12+
One can read more in the [docbook section for Python](https://docs.codetracer.com/getting_started/python.html)
13+
14+
There are also some bugfixes, and a lot of work on various other features which are still in development.
15+
16+
Bugfixes:
17+
- bugfix(ruby): Fix ruby output being on a single line (fix for one of the newer ruby recorders this time)
18+
- bugfix(frontend): add uniform disabled style for future in both event log and terminal
19+
- security fixes, cleanups and upgrades of packages
20+
Refactorings:
21+
- refactor additional parts of our frontend/index code
1122

1223
## 25.09.2 - 2025-09-25(hotfix)
1324

build-python/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = codetracer
3-
version = 25.9.2
3+
version = 25.10.1
44
description = Time-traveling debugger for polyglot codebases
55
long_description = file: README.md
66
long_description_content_type = text/markdown

release_checklist.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Update version.nim with the new version, following [calendar versioning](https://calver.org/): `YY.OM.<build>`:
66
e.g. the first build for a month can be `25.03.1`, the next one `25.03.2` etc
77
* Update Info.plist with the new version following the same format.
8+
* Update build-python/setup.cfg with the new version following the same format.
89
* Open a pull request with the changes
910
* Check if CI builds and upload the artifacts correctly. Test the artifacts: if needed, one can
1011
fix/change things and push again

resources/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
<string>APPL</string>
2525

2626
<!-- CAUTION: DO NOT MOVE THE VALUE TO A NEW LINE!!! THIS NEEDS TO BE EDITABLE WITH SED! -->
27-
<key>CFBundleShortVersionString</key><string>25.09.2</string>
27+
<key>CFBundleShortVersionString</key><string>25.10.1</string>
2828

29-
<key>CFBundleVersion</key><string>25.09.2</string>
29+
<key>CFBundleVersion</key><string>25.10.1</string>
3030

3131
<key>DTCompiler</key>
3232
<string>com.apple.compilers.llvm.clang.1_0</string>

src/ct/version.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import strutils
66

77
const
88
CodeTracerYear* = 25
9-
CodeTracerMonth* = 9
10-
CodeTracerBuild* = 2
9+
CodeTracerMonth* = 10
10+
CodeTracerBuild* = 1
1111

1212
CodeTracerVersionStr* = $CodeTracerYear & "." & ($CodeTracerMonth).align(2, '0') & "." & $CodeTracerBuild
1313

0 commit comments

Comments
 (0)