Skip to content

Releases: rgoulter/c-worksheet-instrumentor

v0.2.6

17 May 16:44
Compare
Choose a tag to compare

Quick project brush up:

  • Migrated the build.gradle to work with Gradle 8.7. (judging by the build.gradle history, from Gradle 2).
  • CI: Removed Travis-CI, since this stopped running builds of public repos. Added GitHub Actions for Linux, and macOS (x86_64, aarch64).
  • Added Nix support code.

Full Changelog: v0.2.5...v0.2.6

v0.2.5

09 Oct 09:02
Compare
Choose a tag to compare
Bump to v0.2.5

v0.2.4

01 Jun 11:30
Compare
Choose a tag to compare

Fix a couple of corner cases:

  • "abc"; now visualised as > abc (rather than > 0xabc124 = a). If you'd
    still like to see pointer addresses of string literals, you can make use of
    statements like: char *p = "lit"; p; instead.
  • char ca[] = "Hello"; ca; now visualised as > Hello. (Previously, would
    try to output char by char, including NUL, so resulted in > [H, e, l, l, o,).
  • Array Subscripting now works for pointers, and for when subscriping an array
    onto an integer. e.g. 5[arr];.

v0.2.3

15 May 08:17
Compare
Choose a tag to compare
v0.2.3

v0.2.3-SNAPSHOT

12 May 09:39
Compare
Choose a tag to compare
v0.2.3-SNAPSHOT

v0.2.2

12 May 08:30
Compare
Choose a tag to compare
v0.2.2

v0.2.1

11 May 17:35
Compare
Choose a tag to compare
v0.2.1 Pre-release
Pre-release
v0.2.1

v0.2-RC

09 May 08:28
Compare
Choose a tag to compare
v0.2-RC Pre-release
Pre-release
Bump version to 0.2.0-SNAPSHOT.