Skip to content

Commit 67778a0

Browse files
committed
release: release 25.03.2
1 parent b8682af commit 67778a0

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

.github/workflows/codetracer.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,9 @@ jobs:
212212
AWS_ACCESS_KEY_ID: ${{ secrets.R2_CODETRACER_BUCKET_ACCESS_KEY_ID }}
213213
AWS_SECRET_ACCESS_KEY: ${{ secrets.R2_CODETRACER_BUCKET_ACCESS_KEY }}
214214
run: |
215-
aws --endpoint-url=${{ secrets.R2_CODETRACER_BUCKET_S3_ENDPOINT }} s3 cp ./non-nix-build/CodeTracer.dmg s3://${{ vars.R2_CODETRACER_BUCKET_NAME }}/CodeTracer-${{ github.ref_name }}-arm64.dmg
215+
# for now apply workaround from https://community.cloudflare.com/t/an-error-occurred-internalerror-when-calling-the-putobject-operation/764905/11:
216+
# adding `--checksum-algorithm CRC32`
217+
aws --endpoint-url=${{ secrets.R2_CODETRACER_BUCKET_S3_ENDPOINT }} s3 cp ./non-nix-build/CodeTracer.dmg s3://${{ vars.R2_CODETRACER_BUCKET_NAME }}/CodeTracer-${{ github.ref_name }}-arm64.dmg --checksum-algorithm CRC32
216218
217219
218220
test-rust:

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,18 @@
22

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

5-
## 25.02.1 - 2025-02-17
5+
## 25.03.2 - 2025-03-24
6+
7+
The first of our weekly releases. It includes some of our initial fixes and improvements
8+
after the initial release:
9+
10+
* Fixes, automations and improvements for our builds: hopefully fixing #21
11+
* A first iteration of an improved notification/error message UX
12+
* Refactoring and cleanup of the `ct` entrypoint source code
13+
* Move the contributors guide to `mdbook`
14+
* Restoring the e2e playwright-based ui tests: adapting them to the publicly released DB backend and initial work on expanding them
15+
16+
## 25.03.1 - 2025-02-17, 2025-03-4
617

718
The initial release of CodeTracer with support for Noir debugging.
819

@@ -11,3 +22,6 @@ and History Explorer, Scratchpad and File Explorer panels.
1122

1223
It offers basic support for Noir tracepoints (no function evaluation)
1324
and the lite display mode of OmniScience.
25+
26+
(Initial version 25.02.1 open sourced on 17 February,
27+
after a repo/history cleanup, superseded by current initial 25.03.1 version from 4 March)

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

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

0 commit comments

Comments
 (0)