Skip to content

Commit 24fc75b

Browse files
committed
Release 4.0.7
1 parent ac65276 commit 24fc75b

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
target/
33
.js/
44
.jvm/
5-
.native/
5+
.native/
6+
.bsp/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ reactify is published to Sonatype OSS and Maven Central currently supporting:
3232
Configuring the dependency in SBT simply requires:
3333

3434
```
35-
libraryDependencies += "com.outr" %% "reactify" % "4.0.2"
35+
libraryDependencies += "com.outr" %% "reactify" % "4.0.7"
3636
```
3737

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

4040
```
41-
libraryDependencies += "com.outr" %%% "reactify" % "4.0.2"
41+
libraryDependencies += "com.outr" %%% "reactify" % "4.0.7"
4242
```
4343

4444
## Concepts

build.sbt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ val allScalaVersions = scala2 ::: scala3
1010

1111
ThisBuild / name := "reactify"
1212
ThisBuild / organization := "com.outr"
13-
ThisBuild / version := "4.0.7-SNAPSHOT"
13+
ThisBuild / version := "4.0.7"
1414
ThisBuild / scalaVersion := scala213
1515
ThisBuild / crossScalaVersions := allScalaVersions
1616

17+
ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org"
18+
ThisBuild / sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
1719
ThisBuild / publishTo := sonatypePublishTo.value
1820
ThisBuild / sonatypeProfileName := "com.outr"
1921
ThisBuild / publishMavenStyle := true
@@ -27,7 +29,7 @@ ThisBuild / scmInfo := Some(
2729
)
2830
)
2931
ThisBuild / developers := List(
30-
Developer(id="darkfrog", name="Matt Hicks", email="matt@matthicks.", url=url("http://matthicks.com"))
32+
Developer(id="darkfrog", name="Matt Hicks", email="matt@matthicks.com", url=url("http://matthicks.com"))
3133
)
3234

3335
val scalaTestVersion: String = "3.2.10"

0 commit comments

Comments
 (0)