Skip to content

Commit c3b5eab

Browse files
Madman10Kalehander92
authored andcommitted
release(hotfix): Release 25.09.2
1 parent bbfcb60 commit c3b5eab

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

CHANGELOG.md

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

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

5+
## 25.09.2 - 2025-09-25(hotfix)
6+
7+
Introduced a number of hotfixes for critical bugs:
8+
9+
- AppImage
10+
- Introduced additional points of termination for backend-manager(fixed fatal crash)
11+
- Removed raw usages of `/tmp` in parts of our codebase
12+
- Set relative rpath instead of depending on `LD_LIBRARY_PATH`(fixed fatal crash)
13+
- macOS
14+
- Fix ruby not being symlinked
15+
- Removed raw usages of `/tmp` in parts of our codebase
16+
- Introduced additional points of termination for backend-manager
17+
- Other fixes
18+
- The help message no longer uses the internal executable name instead of `ct`
19+
- The Gentoo package was renamed to `codetracer-bin` from `codetracer`
20+
- The AUR package now upgrades without having to uninstall it and delete its pacman caches
21+
522
## 25.09.1 - 2025-09-19
623

724

release_checklist.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
* don't write release notes for unfinished or non-documented features(except in special cases)
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
7+
* Update Info.plist with the new version following the same format.
78
* Open a pull request with the changes
8-
* Check if CI builds and upload correctly the artifacts. Test the artifacts: if needed, one can
9+
* Check if CI builds and upload the artifacts correctly. Test the artifacts: if needed, one can
910
fix/change things and push again
1011
* When it's all tested or ready, you can merge the pull request which will automatically push a tag and release
1112
* Once the release is ready, activate the option to make a GitHub discussion for the release, when publishing and publish!
@@ -22,7 +23,7 @@
2223
- Update the version field
2324
- Commit the file. GitHub actions will automatically build and deploy the package to the AUR
2425
- Updating gentoo packages:
25-
- Navigate to the ebuild which can be found as `gentoo/dev-debug/codetracer/codetracer-<version>.ebuild`
26+
- Navigate to the ebuild which can be found as `gentoo/dev-debug/codetracer-bin/codetracer-bin-<version>.ebuild`
2627
- To update the package simply rename the file so that the version portion of it matches the new version
2728
- GitHub actions in [metacraft-desktop-packages](https://github.com/metacraft-labs/metacraft-desktop-packages) will push an update of the ebuild to [metacraft-overlay](https://github.com/metacraft-labs/metacraft-overlay)
2829
- In [metacraft-overlay](https://github.com/metacraft-labs/metacraft-overlay), GitHub actions will start building the package. The first CI build will be updating the `Manifest` file found in the same directory as the ebuild

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

29-
<key>CFBundleVersion</key><string>25.07.1</string>
29+
<key>CFBundleVersion</key><string>25.09.2</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
@@ -7,7 +7,7 @@ import strutils
77
const
88
CodeTracerYear* = 25
99
CodeTracerMonth* = 9
10-
CodeTracerBuild* = 1
10+
CodeTracerBuild* = 2
1111

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

0 commit comments

Comments
 (0)