From 14dab0f065ff74f1219eb5bd6e65797221b93c8f Mon Sep 17 00:00:00 2001 From: AJ Alt Date: Sun, 24 Sep 2017 19:40:20 -0700 Subject: [PATCH] Release version 1.0.0 --- README.md | 20 ++++++++++++++++++++ colorconvert/README.md | 23 +++++++++++++++++++++++ gradle.properties | 2 +- 3 files changed, 44 insertions(+), 1 deletion(-) mode change 100644 => 100755 gradle.properties diff --git a/README.md b/README.md index c81226976..46f6a6fea 100755 --- a/README.md +++ b/README.md @@ -96,6 +96,26 @@ with(TermColors()) { +## 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) diff --git a/colorconvert/README.md b/colorconvert/README.md index 270879341..28e7bb03d 100755 --- a/colorconvert/README.md +++ b/colorconvert/README.md @@ -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:' +} +``` diff --git a/gradle.properties b/gradle.properties old mode 100644 new mode 100755 index 9e3dd54e1..9678f10ea --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ GROUP=com.github.ajalt -VERSION_NAME=0.1 +VERSION_NAME=1.0.0