Skip to content

Commit

Permalink
Prepare for 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandru committed Feb 17, 2018
1 parent 0ff7923 commit db6ea75
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 63 deletions.
9 changes: 2 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,16 @@ matrix:
include:
- jdk: oraclejdk8
scala: 2.12.4
env: COMMAND=ci-all PUBLISH=true
env: COMMAND=ci-all
env:
global:
- TRAVIS_NODE_VERSION="6.10"
- secure: Vv8crrPrmF5jvgQdXUfjFh8isz9KuECrJGk3nzRyXDQZBNzHxo4fxmaQhOXwhdIOkT0WOQk1oMrqQhptcsEIvuWlDVftijYjcOJY0We+KTTQ5AyGFSc4O2hIn2JClM2N72ua7ZaI4wfeBgEHh1TOFfSWNqgZWnaSIdxyJ7Th2AY=
- secure: vRbaa24kUTGmcfyIPJwLF7QrJU5Lk5+WCquz0tPvR4sQvwQDg1mTA0tjXjCXE1z5QSMG5g1CfoieltRbce0QZlXeToxzrgNTRqehEAqbWcvkBB2R9ZhhsVwO+3DG6A+6rEGQ/bB64+62I833UXtEFy1yxfGKeXDuAYf55rVrCVA=
- secure: h9EZ3Mq5ott/itLrOTaEozQNsS+X65y8bMVlvN6wBgNjk9qQ9vyw3GJlipHebEGQQs46zV/nyg9xEMKIFfzr4ngtVmouz6QUqvlWhnNFa+3Alx+bwJrNxrMOzqs4Q+66KAKkuDahcpkZIjz7DYBj06+0i9g/8p0QH0gb6/N39Lo=
- TRAVIS_NODE_VERSION="8.9"
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm
&& git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm
install $TRAVIS_NODE_VERSION
script:
- sbt -J-Xmx6144m ++$TRAVIS_SCALA_VERSION $COMMAND
after_success:
- "./project/publish"
notifications:
webhooks:
urls:
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Version 2.1.1 (Feb 17, 2018)

- Enable Scala 2.13.0-M3 builds
- Disable automatic publishing

## Version 2.1.0 (Feb 9, 2018)

- Add `setupSuite` and `tearDownSuite` for per suite setup and teardown logic
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For `build.sbt` (use the `%%%` operator for Scala.js):

```scala
// use the %%% operator for Scala.js
libraryDependencies += "io.monix" %% "minitest" % "2.1.0" % "test"
libraryDependencies += "io.monix" %% "minitest" % "2.1.1" % "test"

testFrameworks += new TestFramework("minitest.runner.Framework")
```
Expand All @@ -21,7 +21,7 @@ integration:

```scala
// use the %%% operator for Scala.js
libraryDependencies += "io.monix" %% "minitest-laws" % "2.1.0" % "test"
libraryDependencies += "io.monix" %% "minitest-laws" % "2.1.1" % "test"
```

## Tutorial
Expand Down
13 changes: 0 additions & 13 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,6 @@ lazy val baseSettings = Seq(
// -- Settings meant for deployment on oss.sonatype.org
sonatypeProfileName := organization.value,

credentials += Credentials(
"Sonatype Nexus Repository Manager",
"oss.sonatype.org",
sys.env.getOrElse("SONATYPE_USER", ""),
sys.env.getOrElse("SONATYPE_PASS", "")
),

publishMavenStyle := true,
publishTo := {
val nexus = "https://oss.sonatype.org/"
Expand Down Expand Up @@ -225,12 +218,6 @@ lazy val lawsJS = project.in(file("laws/js"))

//------------- For Release

useGpg := false
usePgpKeyHex("2673B174C4071B0E")
pgpPublicRing := baseDirectory.value / "project" / ".gnupg" / "pubring.gpg"
pgpSecretRing := baseDirectory.value / "project" / ".gnupg" / "secring.gpg"
pgpPassphrase := sys.env.get("PGP_PASS").map(_.toArray)

enablePlugins(GitVersioning)

/* The BaseVersion setting represents the in-development (upcoming) version,
Expand Down
41 changes: 0 additions & 41 deletions project/publish

This file was deleted.

0 comments on commit db6ea75

Please sign in to comment.