summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md14
-rw-r--r--Cargo.lock2
-rw-r--r--fatcat-cli/Cargo.toml2
3 files changed, 16 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index df4a879..9089fdb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,20 @@
# CHANGELOG
+## [0.1.2] - 2021-04-09
+
+Quick release to fix searching with new Elasticsearch 7.10 endpoint.
+
+### Fixed
+
+- search code tweaked for ES 7.x: count all hits, and parse total hits field
+- batch downloading from file (not stdin) was running single-threaded
+- concurrency bug resulted in batch download not terminating
+
+### Changed
+
+- prefer archive.org URLs when downloading
+
## [0.1.1] - 2021-02-15
Small release, mostly documentation updates.
diff --git a/Cargo.lock b/Cargo.lock
index 7be21f6..e5ccd8f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -335,7 +335,7 @@ dependencies = [
[[package]]
name = "fatcat-cli"
-version = "0.1.2-dev"
+version = "0.1.2"
dependencies = [
"anyhow",
"assert_cmd",
diff --git a/fatcat-cli/Cargo.toml b/fatcat-cli/Cargo.toml
index 7624a76..0c7ce35 100644
--- a/fatcat-cli/Cargo.toml
+++ b/fatcat-cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "fatcat-cli"
-version = "0.1.2-dev"
+version = "0.1.2"
edition = "2018"
authors = ["Bryan Newbold <bnewbold@robocracy.org>"]
license = "GPL-3+"