Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ running tests, which let regressions sneak into commits. Always use
- For interpreter changes, test with both backends:
```bash
./jperl -e 'code' # JVM backend
./jperl --int -e 'code' # Interpreter
./jperl --interpreter -e 'code' # Interpreter
```

### Perl Test Runner
Expand Down
2 changes: 1 addition & 1 deletion dev/design/refcount_alignment_plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ test pass rates. None regress from today.

### Phase 7 — Interpreter backend parity (1–2 weeks, runs in parallel)

The interpreter backend (`./jperl --int`) has different refcount
The interpreter backend (`./jperl --interpreter`) has different refcount
code paths (AST walker instead of bytecode) and must be updated in
lockstep. For each Phase 1–5 change:

Expand Down
4 changes: 2 additions & 2 deletions dev/modules/pod_html.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ In `RuntimeRegex.java`:

```bash
./jperl t/regex_multiline_global.t
./jperl --int t/regex_multiline_global.t
./jperl --interpreter t/regex_multiline_global.t
```

The interpreter and JVM backends share `RuntimeRegex` so both
Expand Down Expand Up @@ -283,7 +283,7 @@ deviation. Track separately if/when somebody cares.
`RuntimeRegex.matchRegexDirect`.
- [ ] Add `matcher.useAnchoringBounds(false)` to every
`matcher.region(...)` site in `RuntimeRegex.java`.
- [ ] Verify both backends (`./jperl` and `./jperl --int`) pass.
- [ ] Verify both backends (`./jperl` and `./jperl --interpreter`) pass.
- [ ] `make` green.

**Phase 1 — Bundle Pod::Html.**
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/perlonjava/core/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public final class Configuration {
* Automatically populated by Gradle/Maven during build.
* DO NOT EDIT MANUALLY - this value is replaced at build time.
*/
public static final String gitCommitId = "00acf915b";
public static final String gitCommitId = "435af2ae7";

/**
* Git commit date of the build (ISO format: YYYY-MM-DD).
Expand All @@ -48,7 +48,7 @@ public final class Configuration {
* Parsed by App::perlbrew and other tools via: perl -V | grep "Compiled at"
* DO NOT EDIT MANUALLY - this value is replaced at build time.
*/
public static final String buildTimestamp = "Apr 28 2026 13:54:08";
public static final String buildTimestamp = "Apr 28 2026 14:34:02";

// Prevent instantiation
private Configuration() {
Expand Down
Loading