Skip to content

Commit

Permalink
Release 4.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Jan 21, 2022
1 parent ac65276 commit 24fc75b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
target/
.js/
.jvm/
.native/
.native/
.bsp/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ reactify is published to Sonatype OSS and Maven Central currently supporting:
Configuring the dependency in SBT simply requires:

```
libraryDependencies += "com.outr" %% "reactify" % "4.0.2"
libraryDependencies += "com.outr" %% "reactify" % "4.0.7"
```

or, for Scala.js / Scala Native / cross-building:

```
libraryDependencies += "com.outr" %%% "reactify" % "4.0.2"
libraryDependencies += "com.outr" %%% "reactify" % "4.0.7"
```

## Concepts
Expand Down
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ val allScalaVersions = scala2 ::: scala3

ThisBuild / name := "reactify"
ThisBuild / organization := "com.outr"
ThisBuild / version := "4.0.7-SNAPSHOT"
ThisBuild / version := "4.0.7"
ThisBuild / scalaVersion := scala213
ThisBuild / crossScalaVersions := allScalaVersions

ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org"
ThisBuild / sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
ThisBuild / publishTo := sonatypePublishTo.value
ThisBuild / sonatypeProfileName := "com.outr"
ThisBuild / publishMavenStyle := true
Expand All @@ -27,7 +29,7 @@ ThisBuild / scmInfo := Some(
)
)
ThisBuild / developers := List(
Developer(id="darkfrog", name="Matt Hicks", email="matt@matthicks.", url=url("http://matthicks.com"))
Developer(id="darkfrog", name="Matt Hicks", email="matt@matthicks.com", url=url("http://matthicks.com"))
)

val scalaTestVersion: String = "3.2.10"
Expand Down

0 comments on commit 24fc75b

Please sign in to comment.