From 4b3c39822f3a721d97dc2729318b432a2535beba Mon Sep 17 00:00:00 2001 From: Ludwig Stecher Date: Sat, 28 Nov 2020 21:46:06 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a42f16..f2e1186 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.1] - 2020-11-28 + +This is a patch release with a few color picker improvements. + +- [`#46`](https://github.com/Aloso/colo/pull/49): This adds a CIELAB color picker. Open it with `colo pick lab`. It also adds rectangle color pickers. By pressing S, you can now toggle between 3 sliders and a rectangle + a slider: + + ![sliders](https://aloso.github.io/colo/assets/img/0_4_1_sliders.png) + ![rectangle](https://aloso.github.io/colo/assets/img/0_4_1_rectangle.png) + + Note that when pressing S, the currently selected slider will serve as the x-axis of the rectangle; the next slider becomes the y-axis. Select a slider with the ArrowUp and ArrowDown keys. + ## [0.4] - 2020-11-21 This release brings many new features, including a terminal color picker and commands for mixing colors and generating gradients. diff --git a/Cargo.lock b/Cargo.lock index de48541..15c765b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -56,7 +56,7 @@ dependencies = [ [[package]] name = "colo" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "atty", diff --git a/Cargo.toml b/Cargo.toml index 3996764..4a64762 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "colo" -version = "0.4.0" +version = "0.4.1" authors = ["Ludwig Stecher "] description = "CLI tool to show and convert colors between various color spaces" categories = ["command-line-interface"]