From 470a29d4017f0eda25ab45a00801414f9a21e216 Mon Sep 17 00:00:00 2001 From: Adam Fraser Date: Wed, 27 Sep 2023 17:21:53 -0700 Subject: [PATCH] update project stage (#441) --- README.md | 6 +++--- build.sbt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 51403e8b..fd949737 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ lazy val userQuery: ZQuery[Any, Nothing, List[String]] = for { In order to use this library, we need to add the following line in our `build.sbt` file: ```scala -libraryDependencies += "dev.zio" %% "zio-query" % "0.4.0" +libraryDependencies += "dev.zio" %% "zio-query" % "0.5.1" ``` ## Example @@ -139,11 +139,11 @@ Learn more on the [ZIO Query homepage](https://zio.dev/zio-query)! ## Contributing -For the general guidelines, see ZIO [contributor's guide](https://zio.dev/about/contributing). +For the general guidelines, see ZIO [contributor's guide](https://zio.dev/contributor-guidelines). ## Code of Conduct -See the [Code of Conduct](https://zio.dev/about/code-of-conduct) +See the [Code of Conduct](https://zio.dev/code-of-conduct) ## Support diff --git a/build.sbt b/build.sbt index 422d4962..c9f61d76 100644 --- a/build.sbt +++ b/build.sbt @@ -79,7 +79,7 @@ lazy val docs = project mainModuleName := (zioQueryJVM / moduleName).value, scalaVersion := scala213.value, crossScalaVersions := Seq(scala213.value), - projectStage := ProjectStage.Development, + projectStage := ProjectStage.ProductionReady, ScalaUnidoc / unidoc / unidocProjectFilter := inProjects(zioQueryJVM) ) .dependsOn(zioQueryJVM)