Skip to content

Commit 8d3e8ec

Browse files
chore: update all runtime version references to 1.0.1
Update CODEFLASH_RUNTIME_VERSION, hardcoded JAR names, m2 cache path, and bundled JAR so users resolve 1.0.1 from Maven Central. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 023269b commit 8d3e8ec

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

codeflash/languages/java/build_tool_strategy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
logger = logging.getLogger(__name__)
2323

24-
_RUNTIME_JAR_NAME = "codeflash-runtime-1.0.0.jar"
24+
_RUNTIME_JAR_NAME = "codeflash-runtime-1.0.1.jar"
2525
_JAVA_RUNTIME_DIR = Path(__file__).parent.parent.parent.parent / "codeflash-java-runtime"
2626

2727

codeflash/languages/java/build_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
logger = logging.getLogger(__name__)
1616

17-
CODEFLASH_RUNTIME_VERSION = "1.0.0"
17+
CODEFLASH_RUNTIME_VERSION = "1.0.1"
1818
CODEFLASH_RUNTIME_JAR_NAME = f"codeflash-runtime-{CODEFLASH_RUNTIME_VERSION}.jar"
1919

2020
JACOCO_PLUGIN_VERSION = "0.8.13"

codeflash/languages/java/gradle_strategy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ def ensure_runtime(self, build_root: Path, test_module: str | None) -> bool:
432432

433433
libs_dir = module_root / "libs"
434434
libs_dir.mkdir(parents=True, exist_ok=True)
435-
dest_jar = libs_dir / "codeflash-runtime-1.0.0.jar"
435+
dest_jar = libs_dir / "codeflash-runtime-1.0.1.jar"
436436

437437
if not dest_jar.exists():
438438
logger.info("Copying codeflash-runtime JAR to %s", dest_jar)

codeflash/languages/java/maven_strategy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -571,8 +571,8 @@ class MavenStrategy(BuildToolStrategy):
571571
/ "com"
572572
/ "codeflash"
573573
/ "codeflash-runtime"
574-
/ "1.0.0"
575-
/ "codeflash-runtime-1.0.0.jar"
574+
/ "1.0.1"
575+
/ "codeflash-runtime-1.0.1.jar"
576576
)
577577

578578
@property

codeflash/languages/java/resources/codeflash-runtime-1.0.0.jar renamed to codeflash/languages/java/resources/codeflash-runtime-1.0.1.jar

15.2 MB
Binary file not shown.

0 commit comments

Comments
 (0)