Skip to content

Commit a981427

Browse files
committed
hotfix: release 25.11.1
1 parent 66f1d4d commit a981427

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

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

5+
## 25.11.1 - 2025-11-07(hotfix)
6+
7+
Introduced a number of hotfixes for some bugs:
8+
9+
- macOS: Fix Rossetta popups by forcing native execution
10+
- Linux: Fix AppImage RPATHs for some libraries
11+
512
## 25.10.1 - 2025-10-30
613

714
We are releasing our new version enabling support for Python recordings!

build-python/setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = codetracer
3-
version = 25.10.1
4-
description = Time-traveling debugger for polyglot codebases
3+
version = 25.11.1
4+
description = A wrapper around the CodeTracer CLI as a python package
55
long_description = file: README.md
66
long_description_content_type = text/markdown
77
author = Metacraft Labs Ltd.

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.10.1</string>
27+
<key>CFBundleShortVersionString</key><string>25.11.1</string>
2828

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

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

src/ct/version.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import strutils
66

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

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

0 commit comments

Comments
 (0)