summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanilo Bargen <mail@dbrgn.ch>2019-08-10 00:21:32 +0200
committerDanilo Bargen <mail@dbrgn.ch>2019-08-10 00:21:32 +0200
commit8dc480e10f1139bda0ed52e580f9758feedd13c5 (patch)
tree42f2092957acca75275e8e0268b3a02fd39f5c10
parent79d5f9f4ed9e25b13f4d13a86208a8f16b68ca07 (diff)
Release v1.2.0v1.2.0
-rw-r--r--CHANGELOG.md36
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 38 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ed03204..f0583ad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,32 @@ Possible log types:
- `[security]` to invite users to upgrade in case of vulnerabilities.
+### [v1.2.0][v1.2.0] (2019-08-10)
+
+- [added] Add Windows support ([#77][i77])
+- [added] Add support for spaces in commands ([#75][i75])
+- [added] Add support for Fish-based autocompletion ([#71][i71])
+- [added] Add pager support ([#44][i44])
+- [added] Print detected OS with `-v` / `--version` ([#57][i57])
+- [changed] OS detection: Treat BSDs as "osx" ([#58][i58])
+- [changed] Move from curl to reqwest ([#61][i61])
+- [changed] Move to Rust 2018, require Rust 1.32 ([#69][i69] / [#84][i84])
+- [fixed] Add (back) support for proxies ([#68][i68])
+
+Contributors to this version:
+
+- [@aldanor][@aldanor]
+- [@Bassets][@Bassets]
+- [@das-g][@das-g]
+- [@jcgruenhage][@jcgruenhage]
+- [@jdvr][@jdvr]
+- [@jedahan][@jedahan]
+- [@mystal][@mystal]
+- [@natpen][@natpen]
+
+Thanks!
+
+
### [v1.1.0][v1.1.0] (2018-10-22)
- [added] Configuration file support ([#43][i43])
@@ -59,8 +85,18 @@ Thanks!
[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
[i34]: https://github.com/dbrgn/tealdeer/issues/34
[i43]: https://github.com/dbrgn/tealdeer/issues/43
+[i44]: https://github.com/dbrgn/tealdeer/issues/44
[i47]: https://github.com/dbrgn/tealdeer/issues/47
[i48]: https://github.com/dbrgn/tealdeer/issues/48
+[i57]: https://github.com/dbrgn/tealdeer/issues/57
+[i58]: https://github.com/dbrgn/tealdeer/issues/58
+[i61]: https://github.com/dbrgn/tealdeer/issues/61
+[i68]: https://github.com/dbrgn/tealdeer/issues/68
+[i69]: https://github.com/dbrgn/tealdeer/issues/69
+[i75]: https://github.com/dbrgn/tealdeer/issues/75
+[i77]: https://github.com/dbrgn/tealdeer/issues/77
+[i84]: https://github.com/dbrgn/tealdeer/issues/84
diff --git a/Cargo.lock b/Cargo.lock
index 9833e9f..a076c8c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1334,7 +1334,7 @@ dependencies = [
[[package]]
name = "tealdeer"
-version = "1.1.0"
+version = "1.2.0"
dependencies = [
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index dec7c98..42a6d2b 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.1.0"
+version = "1.2.0"
include = ["/src/**/*", "/tests/**/*", "/Cargo.toml", "/README.md", "/LICENSE-*", "/screenshot.png", "/bash_tealdeer", "/fish_tealdeer"]
edition = "2018"