From dccb0270a797d2367929f0c81ac75810e9fabc7f Mon Sep 17 00:00:00 2001 From: Leonid Boytsov Date: Fri, 6 Jul 2018 10:24:20 -0400 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ab9051..aca48f9 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Non-Metric Space Library (NMSLIB) ================= -The latest **pre**-release is [1.7.2](https://github.com/nmslib/nmslib/releases/tag/v1.7.1). Note that the manual is not updated to reflect some of the changes. In particular, we changed the build procedure for Windows. Also note that the manual targets primiarily developers who will extend the library. For most other folks, [Python binding docs should be sufficient](python_bindings). The basic parameter tuning/selection guidelines are also available [online](/python_bindings/parameters.md). +The latest **pre**-release is [1.7.3](https://github.com/nmslib/nmslib/releases/tag/v1.7.3). Note that the manual is not updated to reflect some of the changes. In particular, we changed the build procedure for Windows. Also note that the manual targets primiarily developers who will extend the library. For most other folks, [Python binding docs should be sufficient](python_bindings). The basic parameter tuning/selection guidelines are also available [online](/python_bindings/parameters.md). ----------------- Non-Metric Space Library (NMSLIB) is an **efficient** cross-platform similarity search library and a toolkit for evaluation of similarity search methods. The core-library does **not** have any third-party dependencies. From 5a1dcb5fbb0450cefae5a758a34065fd0c91618f Mon Sep 17 00:00:00 2001 From: Leonid Boytsov Date: Fri, 6 Jul 2018 17:43:34 -0400 Subject: [PATCH 2/2] changing version --- python_bindings/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_bindings/setup.py b/python_bindings/setup.py index 49a22f6..0d668ed 100755 --- a/python_bindings/setup.py +++ b/python_bindings/setup.py @@ -4,7 +4,7 @@ import sys import setuptools -__version__ = '1.7.2' +__version__ = '1.7.3' libdir = os.path.join(".", "nmslib", "similarity_search") library_file = os.path.join(libdir, "release", "libNonMetricSpaceLib.a")