From 99f82341e83c9902951ac5611c874eb3dcf9b339 Mon Sep 17 00:00:00 2001 From: Albert Chae Date: Sun, 29 Sep 2024 17:18:24 -0700 Subject: [PATCH] Change range to be inclusive on upper bound 0.1 This is in preparation to cut 0.0.7 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")