Skip to content

Commit 1b0f017

Browse files
Merge pull request #563 from theseus-rs/update-java-25
chore: update to java 25.0.0.36.1
2 parents 62b9a25 + 70d4d47 commit 1b0f017

File tree

6 files changed

+49
-43
lines changed

6 files changed

+49
-43
lines changed

Cargo.lock

Lines changed: 43 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ version = "0.26.0"
3434
anstyle = "1.0.11"
3535
anyhow = "1.0.99"
3636
async-recursion = "1.1.1"
37-
bitflags = "2.9.3"
37+
bitflags = "2.9.4"
3838
byteorder = "1.5.0"
3939
byte-unit = "5.1.6"
40-
clap = "4.5.46"
40+
clap = "4.5.47"
4141
console = "0.16.0"
4242
cranelift = "0.123.2"
4343
criterion = { version = "0.7.0", default-features = false }

ristretto_classfile/src/class_file.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use std::io::Cursor;
1515
/// The magic number that identifies a valid Java class file.
1616
///
1717
/// Every Java class file begins with this 4-byte value (`0xCAFE_BABE`) in big-endian format. This
18-
/// signature helps JVM identify valid class files and reject invalid ones.
18+
/// signature allows the JVM to identify valid class files and reject invalid ones.
1919
const MAGIC: u32 = 0xCAFE_BABE;
2020

2121
/// `ClassFile` represents the content of a Java .class file.

ristretto_classloader/tests/runtime.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ async fn test_get_runtime_v21() -> Result<()> {
3737

3838
#[tokio::test]
3939
async fn test_get_runtime_v25() -> Result<()> {
40-
test_runtime("25.0.0.34.1", "java.lang.Object").await
40+
test_runtime("25.0.0.36.1", "java.lang.Object").await
4141
}

ristretto_vm/src/intrinsic_methods/registry.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,6 @@ mod tests {
275275

276276
#[tokio::test]
277277
async fn test_runtime_v25() -> Result<()> {
278-
test_runtime("25.0.0.34.1").await
278+
test_runtime("25.0.0.36.1").await
279279
}
280280
}

ristretto_vm/tests/hello_world.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ async fn test_helloworld_v21() -> Result<()> {
4242

4343
#[tokio::test]
4444
async fn test_helloworld_v25() -> Result<()> {
45-
test_helloworld("25.0.0.34.1").await
45+
test_helloworld("25.0.0.36.1").await
4646
}

0 commit comments

Comments
 (0)