From c38afebc6b631ff6d0dddf1f974b6c4afa616445 Mon Sep 17 00:00:00 2001 From: Axiom Bot <0xAxiom@users.noreply.github.com> Date: Sat, 25 Apr 2026 05:23:01 -0700 Subject: [PATCH] fix(java): correct version in README Maven dependency snippet README.md showed 0.1.0-SNAPSHOT but pom.xml is already at 1.0.0-SNAPSHOT. Aligns the installation example with the actual artifact version. Fixes x402-foundation/x402#2059 --- java/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/README.md b/java/README.md index 111f1021b5..6fa4b0c4cd 100644 --- a/java/README.md +++ b/java/README.md @@ -60,7 +60,7 @@ Then add the dependency to your Maven project: org.x402 x402 - 0.1.0-SNAPSHOT + 1.0.0-SNAPSHOT ```