diff --git a/.changeset/plenty-ways-carry.md b/.changeset/plenty-ways-carry.md deleted file mode 100644 index c78c060..0000000 --- a/.changeset/plenty-ways-carry.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'kolorist': minor ---- - -Add support for 24bit TrueColor detection. - -This is supported in nearly every modern terminals these days. The exception to that is the built in Terminal app on macOS and CI systems. TrueColor values are automatically converted to Ansi 256 when TrueColor isn't supported, but Ansi 256 is. The only case where I found that in practice was with Terminal.app on macOS which only supports Ansi 256. diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..782bda4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# kolorist + +## 1.8.0 + +### Minor Changes + +- 737ef18: Add support for 24bit TrueColor detection. + + This is supported in nearly every modern terminals these days. The exception to that is the built in Terminal app on macOS and CI systems. TrueColor values are automatically converted to Ansi 256 when TrueColor isn't supported, but Ansi 256 is. The only case where I found that in practice was with Terminal.app on macOS which only supports Ansi 256. diff --git a/package.json b/package.json index e33f0cd..39d9d22 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kolorist", - "version": "1.7.0", + "version": "1.8.0", "description": "A tiny utility to colorize stdin/stdout", "main": "dist/cjs/index.js", "module": "dist/module/index.js",