From aea3ca5614915ea81e7146bdb1bca98b9d2341dc Mon Sep 17 00:00:00 2001 From: DABH Date: Fri, 16 Feb 2018 14:57:36 -0800 Subject: [PATCH 1/4] Add note to readme directing users to pre-release version; eagerly solicit feedback... --- ReadMe.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ReadMe.md b/ReadMe.md index f09eb70..ff36a05 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -1,5 +1,9 @@ # colors.js [![Build Status](https://travis-ci.org/Marak/colors.js.svg?branch=master)](https://travis-ci.org/Marak/colors.js) +**Update on colors.js roadmap (2018-02-16):** The maintainers have published a pre-release version of `colors` that addresses a number of compatibility issues raised by community. You may install the +RC version by specifying `next` or `>=1.2.0-rc0` as the version for `colors` in your `package.json`. We are eager to receive community feedback on this version in order to move it out of pre-release. +Please open Issues to provide feedback, and check the `develop` branch for the latest bleeding-edge updates. + ## get color and style in your node.js console ![Demo](https://raw.githubusercontent.com/Marak/colors.js/master/screenshots/colors.png) From f1b9ec090ffee56666d57128c6ced2ca49429acd Mon Sep 17 00:00:00 2001 From: DABH Date: Fri, 16 Feb 2018 16:02:56 -0800 Subject: [PATCH 2/4] Ancient Node 0.6 no longer compiles on Travis --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 22a2e83..1e6d011 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,4 +5,3 @@ node_js: - "0.11" - "0.10" - "0.8" - - "0.6" From a69fcef2703c65f9cbb768d8673d9c5ad72e3bca Mon Sep 17 00:00:00 2001 From: DABH Date: Fri, 2 Mar 2018 09:31:04 -0800 Subject: [PATCH 3/4] Create ROADMAP.md --- ROADMAP.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ROADMAP.md diff --git a/ROADMAP.md b/ROADMAP.md new file mode 100644 index 0000000..e8f0816 --- /dev/null +++ b/ROADMAP.md @@ -0,0 +1,16 @@ +# colors.js roadmap + +Here we describe upcoming releases and the key features/fixes they include. Don't see your feature/issue listed here? Get more +1's! + +## Currently Planned Releases + +### 1.3.0 + * Support custom colors + +### 1.2.1 + * Refactor tests to use a testing library like jest (only affects dev/testing) + +### 1.2.0 (release date: about 3/5/18, barring any new issues) + * Built-in Typescript definitions + * Key bug fixes for webpack/bundlers, webstorm, etc. + From 2da55cf0341e8167162b54d6c3317177bc15ac8b Mon Sep 17 00:00:00 2001 From: DABH Date: Fri, 2 Mar 2018 09:33:21 -0800 Subject: [PATCH 4/4] Update ReadMe.md link to roadmap --- ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReadMe.md b/ReadMe.md index ff36a05..fc76234 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -2,7 +2,7 @@ **Update on colors.js roadmap (2018-02-16):** The maintainers have published a pre-release version of `colors` that addresses a number of compatibility issues raised by community. You may install the RC version by specifying `next` or `>=1.2.0-rc0` as the version for `colors` in your `package.json`. We are eager to receive community feedback on this version in order to move it out of pre-release. -Please open Issues to provide feedback, and check the `develop` branch for the latest bleeding-edge updates. +Please open Issues to provide feedback, and check the `develop` branch for the latest bleeding-edge updates. See also the [roadmap](ROADMAP.md). ## get color and style in your node.js console