Skip to content

Commit

Permalink
Update CHANGELOG and version number for v3.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
skystrife committed Mar 13, 2017
1 parent fb2d024 commit e4a2224
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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<const T>` 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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")

Expand Down

0 comments on commit e4a2224

Please sign in to comment.