From 79deccec6c65f9425f5e182abaeefa1e75cf9168 Mon Sep 17 00:00:00 2001 From: Peter Banda Date: Fri, 24 Feb 2023 12:48:04 +0100 Subject: [PATCH] Version 0.2.0 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 1816d250..84b20993 100755 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import sbt.Keys.test ThisBuild / organization := "io.cequence" ThisBuild / scalaVersion := "2.12.15" // 2.13.10" -ThisBuild / version := "0.2.0-SNAPSHOT" // +ThisBuild / version := "0.2.0" ThisBuild / isSnapshot := false lazy val core = (project in file("openai-core")) @@ -17,7 +17,7 @@ lazy val client_stream = (project in file("openai-client-stream")) lazy val guice = (project in file("openai-guice")) .dependsOn(client) - .aggregate(client) + .aggregate(client_stream) // POM settings for Sonatype