File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change 22
33All 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
718The initial release of CodeTracer with support for Noir debugging.
819
@@ -11,3 +22,6 @@ and History Explorer, Scratchpad and File Explorer panels.
1122
1223It offers basic support for Noir tracepoints (no function evaluation)
1324and 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)
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import strutils
77const
88 CodeTracerYear * = 25
99 CodeTracerMonth * = 3
10- CodeTracerBuild * = 1
10+ CodeTracerBuild * = 2
1111
1212 CodeTracerVersionStr * = $ CodeTracerYear & " ." & ($ CodeTracerMonth ).align (2 , '0' ) & " ." & $ CodeTracerBuild
1313
You can’t perform that action at this time.
0 commit comments