Skip to content

Commit

Permalink
Merge pull request #72 from Kevin-Lee/release
Browse files Browse the repository at this point in the history
Prepare to release 0.1.0
  • Loading branch information
kevin-lee committed Nov 17, 2019
2 parents 1c96b53 + 6b39deb commit 55a06fc
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 17 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ Please check out [J8+ Wiki](https://github.com/Kevin-Lee/j8plus/wiki) (work in p
...

<dependency>
<groupId>cc.kevinlee</groupId>
<groupId>io.kevinlee</groupId>
<artifactId>j8plus</artifactId>
<version>0.0.15</version>
<version>0.1.0</version>
</dependency>

...
Expand Down Expand Up @@ -147,10 +147,10 @@ repositories {
* Add Dependency

```gradle
compile group: 'cc.kevinlee', name: 'j8plus', version: '0.0.15'
compile group: 'io.kevinlee', name: 'j8plus', version: '0.1.0'
```
OR

```gradle
compile "cc.kevinlee:testosterone:0.0.15"
compile "io.kevinlee:testosterone:0.1.0"
```
18 changes: 5 additions & 13 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,23 +1,15 @@
val ProjectVersion = "0.0.15"
import ProjectInfo._

val testosteroneVersion = "0.0.7"
val junitJupiterVersion = "5.5.0"


ThisBuild / scalaVersion := "2.13.1"
ThisBuild / version := ProjectVersion
ThisBuild / organization := "io.kevinlee"
ThisBuild / developers := List(
Developer(
"Kevin-Lee", "Kevin Lee"
, "kevin.code@kevinlee.io"
, url("https://github.com/Kevin-Lee")
))
ThisBuild / homepage := Some(url("https://github.com/Kevin-Lee/j8plus"))
ThisBuild / scmInfo := Some(ScmInfo(
url("https://github.com/Kevin-Lee/j8plus")
, "git@github.com:Kevin-Lee/j8plus.git"
))

ThisBuild / developers := projectDevelopers
ThisBuild / homepage := projectHomePage
ThisBuild / scmInfo := projectScmInfo

lazy val j8plus = (project in file("."))
.enablePlugins(DevOopsJavaPlugin)
Expand Down
17 changes: 17 additions & 0 deletions changelogs/0.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# J8+ - [v0.1.0](https://github.com/Kevin-Lee/j8plus/issues?q=is%3Aissue+milestone%3A0.1.0+is%3Aclosed)

## Done
* Add Either type (#1)
* shh for more functions (#28)
* shh for Runnable (#29)
* shh for Supplier (#30)
* shh for Consumer (#32)
* shh for Predicate types (#36)
* Change group id for publishing to io.kevinlee (#46)
* Set up GitHub Actions (#47)
* Make Either.Left and Either.Right final (#51)
* Add Maybe (#52)
* Add fromMaybe to Either (#61)

## Fixed
* Make Maybe Serializable (#62)
19 changes: 19 additions & 0 deletions project/ProjectInfo.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import sbt.{Developer, ScmInfo, url}

object ProjectInfo {
val ProjectVersion: String = "0.1.0"

val projectDevelopers: List[Developer] = List(
Developer(
"Kevin-Lee", "Kevin Lee"
, "kevin.code@kevinlee.io"
, url("https://github.com/Kevin-Lee")
))

val projectHomePage: Option[sbt.URL] = Some(url("https://github.com/Kevin-Lee/j8plus"))

val projectScmInfo: Option[ScmInfo] = Some(ScmInfo(
url("https://github.com/Kevin-Lee/j8plus")
, "git@github.com:Kevin-Lee/j8plus.git"
))
}

0 comments on commit 55a06fc

Please sign in to comment.