Skip to content

Commit

Permalink
Add 'zio-' back to artifact names (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
toxicafunk authored Feb 11, 2020
1 parent 9230dd0 commit 0a40d55
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/essentials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ Encoders and Clients.

```scala
// Prometheus
libraryDependencies += "dev.zio" %% "zio-metrics-prometheus" % "0.1.0"
libraryDependencies += "dev.zio" %% "zio-metrics-prometheus" % "0.1.1"

// Dropwizard
libraryDependencies += "dev.zio" %% "zio-metrics-dropwizard" % "0.1.0"
libraryDependencies += "dev.zio" %% "zio-metrics-dropwizard" % "0.1.1"

// StatsD/DogStatsD
libraryDependencies += "dev.zio" %% "zio-metrics-statsd" % "0.1.0"
libraryDependencies += "dev.zio" %% "zio-metrics-statsd" % "0.1.1"
```

## References
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import sbt.Keys._

object Build {
def stdSettings(prjName: String) = Seq(
name := s"$prjName",
name := s"zio-$prjName",
scalacOptions := stdOptions,
crossScalaVersions := Seq(Scala212, Scala213),
scalaVersion in ThisBuild := Scala212,
Expand Down

0 comments on commit 0a40d55

Please sign in to comment.