Skip to content

Commit

Permalink
Bump to 0.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jqnatividad committed Oct 10, 2021
1 parent 8e2335a commit 890a95a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.17.1] - 2021-10-10
### Fixed
- explicitly specified embedded rust-stats version in Cargo.toml. Required to publish
on crates.io

## [0.17.0] - 2021-10-10
### Added
- added `searchset` command. Run **multiple regexes** over CSV data in a **single pass**.
Expand All @@ -14,12 +19,12 @@ Previously, regex unicode support was on by default, which comes at the cost of
And since `qsv` optimizes for performance ("q is for quick"), it is now off by default.
- added quartiles calculation to `stats`. Pulled in upstream
[pending](https://github.com/BurntSushi/rust-stats/pull/15) [PRs](https://github.com/BurntSushi/xsv/pull/273)
from [@m15a](https://github.com/m15a) to implement
from [@m15a](https://github.com/m15a) to implement.

### Changed
- changed variance algorithm. For some reason, the previous variance algorithm was causing
intermittent test failures on macOS. Pulled in [pending upstream PR](https://github.com/BurntSushi/rust-stats/pull/11)
from [@ruppertmillard](https://github.com/ruppertmillard)
from [@ruppertmillard](https://github.com/ruppertmillard).
- embedded [rust-stats fork](https://github.com/jqnatividad/rust-stats) submodule which implements
quartile and new variance algorithm.
- changed GitHub Actions to pull in submodules.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qsv"
version = "0.16.4" #:version
version = "0.17.1" #:version
authors = ["Joel Natividad <[email protected]>"]
description = "A high performance CSV command line toolkit."
documentation = "https://github.com/jqnatividad/qsv"
Expand Down Expand Up @@ -50,7 +50,7 @@ rand = "0.7"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
streaming-stats = { path = "rust-stats"}
streaming-stats = { version="0.3.1", path = "rust-stats"}
tabwriter = "1.2"
textwrap = "0.14.0"
threadpool = "1.8"
Expand Down

0 comments on commit 890a95a

Please sign in to comment.