From 57448993eb29b4be9244591d5a4a5f18dd4247d9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 22 Apr 2023 21:54:15 +0000 Subject: [PATCH] Version Packages --- .changeset/plenty-ways-carry.md | 7 ------- CHANGELOG.md | 9 +++++++++ package.json | 2 +- 3 files changed, 10 insertions(+), 8 deletions(-) delete mode 100644 .changeset/plenty-ways-carry.md create mode 100644 CHANGELOG.md 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",