From 24fc75ba98f6a8169153862f976faa7c45df1da5 Mon Sep 17 00:00:00 2001 From: Matt Hicks Date: Fri, 21 Jan 2022 10:13:40 -0600 Subject: [PATCH] Release 4.0.7 --- .gitignore | 3 ++- README.md | 4 ++-- build.sbt | 6 ++++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 223d9ef..760755d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ target/ .js/ .jvm/ -.native/ \ No newline at end of file +.native/ +.bsp/ \ No newline at end of file diff --git a/README.md b/README.md index a70c29c..075fcca 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/build.sbt b/build.sbt index 0f557c6..071f95b 100644 --- a/build.sbt +++ b/build.sbt @@ -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 @@ -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"