summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanilo Bargen <mail@dbrgn.ch>2020-09-03 23:21:25 +0200
committerGitHub <noreply@github.com>2020-09-03 23:21:25 +0200
commit5a9cde733b435f55d39581dae34db24e8c5118e1 (patch)
tree156f075fb16a90e0158a8988fb090f5b9a9b460b
parent2a2a4cdda5883d4d578b167a1cf810f64e896f13 (diff)
Release v1.4.0 (#136)v1.4.0
-rw-r--r--CHANGELOG.md33
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 35 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5bf90c5..750bc66 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,27 @@ Possible log types:
- `[security]` to invite users to upgrade in case of vulnerabilities.
+### [v1.4.0][v1.4.0] (2020-09-03)
+
+- [added] Configurable automatic cache updates ([#115][i115])
+- [added] Improved color detection and support for `--color` argument and
+ `NO_COLOR` env variable ([#111][i111])
+- [changed] Make `--list` option comply with official spec ([#112][i112])
+- [changed] Move cache age warning to stderr ([#113][i113])
+
+Contributors to this version:
+
+- [Atul Bhosale][@Atul9]
+- [Danny Mösch][@SimplyDanny]
+- [Ilaï Deutel][@ilai-deutel]
+- [Kornel][@kornelski]
+- [@LovecraftianHorror][@LovecraftianHorror]
+- [@michaeldel][@michaeldel]
+- [Niklas Mohrin][@niklasmohrin]
+
+Thanks!
+
+
### [v1.3.0][v1.3.0] (2020-02-28)
- [added] New config option for compact output mode ([#89][i89])
@@ -105,27 +126,35 @@ Thanks!
[@aldanor]: https://github.com/aldanor
+[@Atul9]: https://github.com/Atul9
[@Bassets]: https://github.com/Bassets
[@Calinou]: https://github.com/Calinou
[@das-g]: https://github.com/das-g
[@Delapouite]: https://github.com/Delapouite
[@equal-l2]: https://github.com/equal-l2
+[@ilai-deutel]: https://github.com/ilai-deutel
[@james2doyle]: https://github.com/james2doyle
[@jcgruenhage]: https://github.com/jcgruenhage
[@jdvr]: https://github.com/jdvr
[@jedahan]: https://github.com/jedahan
[@jesdazrez]: https://github.com/jesdazrez
+[@kornelski]: https://github.com/kornelski
[@korrat]: https://github.com/korrat
+[@LovecraftianHorror]: https://github.com/LovecraftianHorror
[@ma-renaud]: https://github.com/ma-renaud
+[@michaeldel]: https://github.com/michaeldel
[@mystal]: https://github.com/mystal
[@natpen]: https://github.com/natpen
+[@niklasmohrin]: https://github.com/niklasmohrin
[@Plommonsorbet]: https://github.com/Plommonsorbet
+[@SimplyDanny]: https://github.com/SimplyDanny
[@Voultapher]: https://github.com/Voultapher
[v1.0.0]: https://github.com/dbrgn/tealdeer/compare/v0.4.0...v1.0.0
[v1.1.0]: https://github.com/dbrgn/tealdeer/compare/v1.0.0...v1.1.0
[v1.2.0]: https://github.com/dbrgn/tealdeer/compare/v1.1.0...v1.2.0
[v1.3.0]: https://github.com/dbrgn/tealdeer/compare/v1.2.0...v1.3.0
+[v1.4.0]: https://github.com/dbrgn/tealdeer/compare/v1.3.0...v1.4.0
[i34]: https://github.com/dbrgn/tealdeer/issues/34
[i43]: https://github.com/dbrgn/tealdeer/issues/43
@@ -147,3 +176,7 @@ Thanks!
[i95]: https://github.com/dbrgn/tealdeer/issues/95
[i97]: https://github.com/dbrgn/tealdeer/issues/97
[i99]: https://github.com/dbrgn/tealdeer/issues/99
+[i111]: https://github.com/dbrgn/tealdeer/issues/111
+[i112]: https://github.com/dbrgn/tealdeer/issues/112
+[i113]: https://github.com/dbrgn/tealdeer/issues/113
+[i115]: https://github.com/dbrgn/tealdeer/issues/115
diff --git a/Cargo.lock b/Cargo.lock
index cdcde6d..ef5e290 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1156,7 +1156,7 @@ dependencies = [
[[package]]
name = "tealdeer"
-version = "1.3.0"
+version = "1.4.0"
dependencies = [
"ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
"app_dirs2 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index 642765f..86af621 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,7 @@ license = "MIT/Apache-2.0"
name = "tealdeer"
readme = "README.md"
repository = "https://github.com/dbrgn/tealdeer/"
-version = "1.3.0"
+version = "1.4.0"
include = ["/src/**/*", "/tests/**/*", "/Cargo.toml", "/README.md", "/LICENSE-*", "/screenshot.png", "/bash_tealdeer", "/fish_tealdeer"]
edition = "2018"