Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 28, 2024
1 parent 37d5954 commit 22cbbba
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[ZIO Schema](https://github.com/zio/zio-schema) is a [ZIO](https://zio.dev)-based library for modeling the schema of data structures as first-class values.

[![Development](https://img.shields.io/badge/Project%20Stage-Development-green.svg)](https://github.com/zio/zio/wiki/Project-Stages) ![CI Badge](https://github.com/zio/zio-schema/workflows/CI/badge.svg) [![Sonatype Snapshots](https://img.shields.io/nexus/s/https/oss.sonatype.org/dev.zio/zio-schema_2.13.svg?label=Sonatype%20Snapshot)](https://oss.sonatype.org/content/repositories/snapshots/dev/zio/zio-schema_2.13/) [![ZIO Schema](https://img.shields.io/github/stars/zio/zio-schema?style=social)](https://github.com/zio/zio-schema)
[![Development](https://img.shields.io/badge/Project%20Stage-Development-green.svg)](https://github.com/zio/zio/wiki/Project-Stages) ![CI Badge](https://github.com/zio/zio-schema/workflows/CI/badge.svg) [![Sonatype Releases](https://img.shields.io/nexus/r/https/oss.sonatype.org/dev.zio/zio-schema_2.13.svg?label=Sonatype%20Release)](https://oss.sonatype.org/content/repositories/releases/dev/zio/zio-schema_2.13/) [![Sonatype Snapshots](https://img.shields.io/nexus/s/https/oss.sonatype.org/dev.zio/zio-schema_2.13.svg?label=Sonatype%20Snapshot)](https://oss.sonatype.org/content/repositories/snapshots/dev/zio/zio-schema_2.13/) [![javadoc](https://javadoc.io/badge2/dev.zio/zio-schema-docs_2.13/javadoc.svg)](https://javadoc.io/doc/dev.zio/zio-schema-docs_2.13) [![ZIO Schema](https://img.shields.io/github/stars/zio/zio-schema?style=social)](https://github.com/zio/zio-schema)

## Introduction

Expand Down Expand Up @@ -39,18 +39,17 @@ _ZIO Schema_ is used by a growing number of ZIO libraries, including [ZIO Flow](
In order to use this library, we need to add the following lines in our `build.sbt` file:

```scala

libraryDependencies += "dev.zio" %% "zio-schema" % "1.1.1"
libraryDependencies += "dev.zio" %% "zio-schema-avro" % "1.1.1"
libraryDependencies += "dev.zio" %% "zio-schema-bson" % "1.1.1"
libraryDependencies += "dev.zio" %% "zio-schema-json" % "1.1.1"
libraryDependencies += "dev.zio" %% "zio-schema-msg-pack" % "1.1.1"
libraryDependencies += "dev.zio" %% "zio-schema-protobuf" % "1.1.1"
libraryDependencies += "dev.zio" %% "zio-schema-thrift" % "1.1.1"
libraryDependencies += "dev.zio" %% "zio-schema-zio-test" % "1.1.1"
libraryDependencies += "dev.zio" %% "zio-schema" % "1.2.1"
libraryDependencies += "dev.zio" %% "zio-schema-avro" % "1.2.1"
libraryDependencies += "dev.zio" %% "zio-schema-bson" % "1.2.1"
libraryDependencies += "dev.zio" %% "zio-schema-json" % "1.2.1"
libraryDependencies += "dev.zio" %% "zio-schema-msg-pack" % "1.2.1"
libraryDependencies += "dev.zio" %% "zio-schema-protobuf" % "1.2.1"
libraryDependencies += "dev.zio" %% "zio-schema-thrift" % "1.2.1"
libraryDependencies += "dev.zio" %% "zio-schema-zio-test" % "1.2.1"

// Required for the automatic generic derivation of schemas
libraryDependencies += "dev.zio" %% "zio-schema-derivation" % "1.1.1"
libraryDependencies += "dev.zio" %% "zio-schema-derivation" % "1.2.1"
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided"
```

Expand Down

0 comments on commit 22cbbba

Please sign in to comment.