Skip to content

Commit 5dc92bf

Browse files
committed
release: 25.05.1
1 parent 93d8547 commit 5dc92bf

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGELOG.md

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

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

5+
## 25.05.1 - 2025-05-05
6+
7+
The first release for a while, including our progress since March:
8+
9+
* Fixes:
10+
* Reopening closed editors bugfix
11+
* Ruby support: fixing the omniscience support,
12+
a rudimentary way to override the interpreter and
13+
point to a newer refactored version of the Ruby recorder
14+
* Using `trace_paths.json` as part of the language detection for db-based traces
15+
* Fix the db-backend support for multiple values for each tracepoint step
16+
* Integration with the proprietary rr backend for native languages
17+
(currently requires a separate setup for the rr backend, and custom configuration pointing to it)
18+
519
## 25.03.3 - 2025-03-31
620

721
The second weekly release. It includes:
@@ -33,3 +47,4 @@ and the lite display mode of OmniScience.
3347

3448
(Initial version 25.02.1 open sourced on 17 February,
3549
after a repo/history cleanup, superseded by current initial 25.03.1 version from 4 March)
50+

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
[![CI Status](https://github.com/metacraft-labs/codetracer/actions/workflows/codetracer.yml/badge.svg?branch=main)](https://github.com/metacraft-labs/codetracer/actions/workflows/codetracer.yml)
33
[![Discord](https://img.shields.io/discord/1326949714679038014?label=Discord&logo=discord&style=flat)](https://discord.gg/aH5WTMnKHT)
44

5-
[![Download AppImage](https://img.shields.io/badge/Download-Linux%20AppImage-blue?style=for-the-badge)](https://downloads.codetracer.com/CodeTracer-25.03.3-amd64.AppImage)
6-
[![Download macOS](https://img.shields.io/badge/Download-macOS-blue?style=for-the-badge)](https://downloads.codetracer.com/CodeTracer-25.03.3-arm64.dmg)
5+
[![Download AppImage](https://img.shields.io/badge/Download-Linux%20AppImage-blue?style=for-the-badge)](https://downloads.codetracer.com/CodeTracer-25.05.1-amd64.AppImage)
6+
[![Download macOS](https://img.shields.io/badge/Download-macOS-blue?style=for-the-badge)](https://downloads.codetracer.com/CodeTracer-25.05.1-arm64.dmg)
77

88
> [!TIP]
99
> You can place the downloaded app in a location of your choosing (e.g., the `Applications` folder on macOS or `~/.local/share/applications` on Linux).

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* = 3
10-
CodeTracerBuild* = 3
9+
CodeTracerMonth* = 5
10+
CodeTracerBuild* = 1
1111

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

0 commit comments

Comments
 (0)