Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 codeflash-java-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>com.codeflash</groupId>
<artifactId>codeflash-runtime</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>

<name>CodeFlash Java Runtime</name>
Expand Down
2 changes: 1 addition & 1 deletion codeflash/languages/java/build_tool_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

logger = logging.getLogger(__name__)

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


Expand Down
2 changes: 1 addition & 1 deletion codeflash/languages/java/build_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

logger = logging.getLogger(__name__)

CODEFLASH_RUNTIME_VERSION = "1.0.0"
CODEFLASH_RUNTIME_VERSION = "1.0.1"
CODEFLASH_RUNTIME_JAR_NAME = f"codeflash-runtime-{CODEFLASH_RUNTIME_VERSION}.jar"

JACOCO_PLUGIN_VERSION = "0.8.13"
Expand Down
2 changes: 1 addition & 1 deletion codeflash/languages/java/gradle_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ def ensure_runtime(self, build_root: Path, test_module: str | None) -> bool:

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

if not dest_jar.exists():
logger.info("Copying codeflash-runtime JAR to %s", dest_jar)
Expand Down
4 changes: 2 additions & 2 deletions codeflash/languages/java/maven_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,8 +571,8 @@ class MavenStrategy(BuildToolStrategy):
/ "com"
/ "codeflash"
/ "codeflash-runtime"
/ "1.0.0"
/ "codeflash-runtime-1.0.0.jar"
/ "1.0.1"
/ "codeflash-runtime-1.0.1.jar"
)

@property
Expand Down
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we are committing a jar file @mashraf-222

Binary file not shown.
Loading