From 1360631c2efdf39ee893c984308fcb68d6e9a0ee Mon Sep 17 00:00:00 2001 From: albertchae <217050+albertchae@users.noreply.github.com> Date: Wed, 2 Oct 2024 09:25:25 -0700 Subject: [PATCH] Change range to be inclusive on upper bound 0.1 (#88) This is in preparation to cut 0.1.0 for inngest-spring-boot-adapter --- inngest-spring-boot-adapter/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inngest-spring-boot-adapter/build.gradle.kts b/inngest-spring-boot-adapter/build.gradle.kts index 8d5486cf..e6e4ae4a 100644 --- a/inngest-spring-boot-adapter/build.gradle.kts +++ b/inngest-spring-boot-adapter/build.gradle.kts @@ -23,7 +23,7 @@ repositories { } dependencies { - val pkg = if (System.getenv("RELEASE") != null) "com.inngest:inngest:[0.0.5, 0.1)" else project(":inngest") + val pkg = if (System.getenv("RELEASE") != null) "com.inngest:inngest:[0.0.5, 0.1]" else project(":inngest") api(pkg) implementation("org.springframework.boot:spring-boot-starter-web")