From e4a2224ccc4c67f0dd1b4a184520066c342b4a09 Mon Sep 17 00:00:00 2001 From: Chase Geigle Date: Mon, 13 Mar 2017 13:20:54 -0500 Subject: [PATCH] Update CHANGELOG and version number for v3.0.1. --- CHANGELOG.md | 22 +++++++++++++++++++++- CMakeLists.txt | 2 +- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15a5eec81..c411600c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# [v3.0.1][3.0.1] +## New features +- Add an optional `xz{i,o}fstream` to `meta::io` if compiled with liblzma + available. +- `util::disk_vector` can now be used to specify a read-only view + of a disk-backed vector. + +## Bug fixes +- `ir_eval::print_stats` now takes a `num_docs` parameter to properly + display evaluation metrics at a certain cutoff point, which was always 5 + beforehand. This fixes a bug in `query-runner` where the stats were not + being computed according to the cutoff point specified in the + configuration. +- `ir_eval::avg_p` now correctly stops computing after `num_docs`. Before, + if you specified `num_docs` as a smaller value than the size of the + result list, it would erroneously keep calculating until the end of the + result list instead of stopping after `num_docs` elements. +- `{inverted,forward}_index` can now be loaded from read-only filesystems. + # [v3.0.0][3.0.0] ## New features - Add an `embedding_analyzer` that represents documents with their averaged word @@ -609,7 +628,8 @@ # [v1.0][1.0] - Initial release. -[unreleased]: https://github.com/meta-toolkit/meta/compare/v3.0.0...develop +[unreleased]: https://github.com/meta-toolkit/meta/compare/v3.0.1...develop +[3.0.1]: https://github.com/meta-toolkit/meta/compare/v3.0.0...v3.0.1 [3.0.0]: https://github.com/meta-toolkit/meta/compare/v2.4.2...v3.0.0 [2.4.2]: https://github.com/meta-toolkit/meta/compare/v2.4.1...v2.4.2 [2.4.1]: https://github.com/meta-toolkit/meta/compare/v2.4.0...v2.4.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 5215b5f97..69175d035 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS 1) set(MeTA_VERSION_MAJOR 3) set(MeTA_VERSION_MINOR 0) -set(MeTA_VERSION_PATCH 0) +set(MeTA_VERSION_PATCH 1) set(MeTA_VERSION "${MeTA_VERSION_MAJOR}.${MeTA_VERSION_MINOR}.${MeTA_VERSION_PATCH}")