diff --git a/CHANGELOG.md b/CHANGELOG.md index 83f1bbc4c..4416669b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,9 @@ 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). ## [Unreleased] - +## [0.26.1] - 2021-12-21 +### Fixed +* explicitly include `deflate` compression method for self_update. Otherwise, `--update` unzipping doesn't work. ## [0.26.0] - 2021-12-21 ### Changed * `fetch` refinements. Still WIP, but usable (See [#77](https://github.com/jqnatividad/qsv/issues/77)) diff --git a/Cargo.lock b/Cargo.lock index 69c524071..a242af4ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "qsv" -version = "0.26.0" +version = "0.26.1" dependencies = [ "byteorder", "cached", diff --git a/Cargo.toml b/Cargo.toml index a39c9a19e..0ce40e13c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qsv" -version = "0.26.0" #:version +version = "0.26.1" #:version authors = ["Joel Natividad "] description = "A high performance CSV command line toolkit." documentation = "https://docs.rs/crate/qsv"