Skip to content

Commit

Permalink
Release 3.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Aug 5, 2022
1 parent c4b6854 commit 037826e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ For people that want to skip the explanations and see it action, this is the pla
### Dependency Configuration

```scala
libraryDependencies += "com.outr" %% "scribe" % "3.10.1"
libraryDependencies += "com.outr" %% "scribe" % "3.10.2"
```

For Cross-Platform projects (JVM, JS, and/or Native):

```scala
libraryDependencies += "com.outr" %%% "scribe" % "3.10.1"
libraryDependencies += "com.outr" %%% "scribe" % "3.10.2"
```

Or, if you want interoperability with SLF4J (to allow better interoperability with existing libraries using other loggers):

```scala
libraryDependencies += "com.outr" %% "scribe-slf4j" % "3.10.1"
libraryDependencies += "com.outr" %% "scribe-slf4j" % "3.10.2"
```

### Usage
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ val scalaNativeVersions = scalaNot211Versions

name := "scribe"
ThisBuild / organization := "com.outr"
ThisBuild / version := "3.10.2-SNAPSHOT"
ThisBuild / version := "3.10.2"
ThisBuild / scalaVersion := scala213
ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation")
ThisBuild / javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3")

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.0")

addSbtPlugin("com.github.sbt" % "sbt-git" % "2.0.0")

Expand Down
3 changes: 2 additions & 1 deletion publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
set -e

sbt +clean
sbt test
sbt +compile
sbt +test
sbt +coreJS/publishSigned +coreJVM/publishSigned +coreNative/publishSigned +catsJS/publishSigned +catsJVM/publishSigned +fileModuleJVM/publishSigned +fileModuleNative/publishSigned +jsonJS/publishSigned +jsonJVM/publishSigned +slf4j/publishSigned +slf4j2/publishSigned +migration/publishSigned +config/publishSigned +slack/publishSigned +logstash/publishSigned
sbt sonatypeRelease

0 comments on commit 037826e

Please sign in to comment.