diff --git a/pom.xml b/pom.xml
index 282d815..89dc1c3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
dev.mccue
json
- 2024.11.17
+ 2024.11.20
jar
@@ -31,22 +31,21 @@
Apache License, Version 2.0
- http://www.apache.org/licenses/LICENSE-2.0.txt
+ https://www.apache.org/licenses/LICENSE-2.0.txt
scm:git:git://github.com/bowbahdoe/json.git
scm:git:ssh://github.com:bowbahdoe/json.git
- http://github.com/bowbahdoe/json/tree/main
+ https://github.com/bowbahdoe/json/tree/main
org.jspecify
jspecify
- 0.3.0
- provided
+ 1.0.0
org.junit.jupiter
diff --git a/src/main/java/dev/mccue/json/JsonDecoder.java b/src/main/java/dev/mccue/json/JsonDecoder.java
index ff668d4..ed0b588 100644
--- a/src/main/java/dev/mccue/json/JsonDecoder.java
+++ b/src/main/java/dev/mccue/json/JsonDecoder.java
@@ -577,4 +577,12 @@ static T oneOf(Json json, JsonDecoder extends T> decoderA, JsonDecoder e
throw JsonDecodeException.oneOf(Collections.unmodifiableList(errors));
}
}
+
+ static Json any(Json json) {
+ return json;
+ }
+
+ static JsonDecoder any() {
+ return JsonDecoder::any;
+ }
}