Skip to content

Commit

Permalink
Release version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ajalt committed Sep 25, 2017
1 parent c08c0e5 commit 14dab0f
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,26 @@ with(TermColors()) {

<img src=".github/example_hsv.png">

## Installation

Mordant is distributed with [jitpack](https://jitpack.io/#ajalt/mordant).

First, add Jitpack to your gradle repositories.

```groovy
repositories {
maven { url "https://jitpack.io" }
}
```

Then add the dependency on mordant.

```groovy
dependencies {
compile 'com.github.ajalt.mordant:mordant:1.0.0'
}
```

## Related projects

* [Chalk: a JS library that inspired Mordant](https://github.com/chalk)
Expand Down
23 changes: 23 additions & 0 deletions colorconvert/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,26 @@ CMYK(c=95, m=50, y=0, k=0)
> HSL(180, 50, 50).toHex(withNumberSign = true)
"#40bfbf"
```

## Installation

If you just want to use Mordant, this dependency is added transitively,
there no need to declare it explicitly. However, if you want to use it
by itself, it is distributed with
[jitpack](https://jitpack.io/#ajalt/mordant).

First, add Jitpack to your gradle repositories.

```groovy
repositories {
maven { url "https://jitpack.io" }
}
```

Then add the dependency on colorconvert.

```groovy
dependencies {
compile 'com.github.ajalt.mordant:colorconvert:<latest version>'
}
```
2 changes: 1 addition & 1 deletion gradle.properties
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
GROUP=com.github.ajalt
VERSION_NAME=0.1
VERSION_NAME=1.0.0

0 comments on commit 14dab0f

Please sign in to comment.