MLRsearch: Update PyPI metadata for v0.4.0 42/31842/1
authorVratko Polak <vrpolak@cisco.com>
Wed, 31 Mar 2021 15:26:11 +0000 (17:26 +0200)
committerVratko Polak <vrpolak@cisco.com>
Wed, 31 Mar 2021 15:26:11 +0000 (17:26 +0200)
Change-Id: I8107097843a3bcddc28ac8a61f72614a3c3145ac
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
PyPI/MLRsearch/README.rst
PyPI/MLRsearch/setup.py

index 2b13d90..8439fe7 100644 (file)
@@ -16,6 +16,9 @@ is only a symlink to the original place of tightly coupled CSIT code.
 Change log
 ----------
 
+0.4.0: Considarable logic improvements, more than two target ratios supported.
+API is not backward compatible with previous versions.
+
 0.3.0: Migrated to Python 3.6, small code quality improvements.
 
 0.2.0: Optional parameter "doublings" has been added.
@@ -30,11 +33,12 @@ TODO.
 Operation logic
 ---------------
 
-See `IETF draft`_.
+The latest published `IETF draft`_ describes logic of version 0.3,
+version 0.4 logic will be descibed in next draft version.
 
 .. _CSIT: https://wiki.fd.io/view/CSIT
 .. _fd.io: https://fd.io/
 .. _LFN: https://www.linuxfoundation.org/projects/networking/
-.. _PyPI: https://pypi.org/
+.. _PyPI: https://pypi.org/project/MLRsearch/
 .. _directory: https://gerrit.fd.io/r/gitweb?p=csit.git;a=tree;f=PyPI/MLRsearch;hb=refs/heads/master
-.. _IETF draft: https://tools.ietf.org/html/draft-vpolak-mkonstan-bmwg-mlrsearch
+.. _IETF draft: https://tools.ietf.org/html/draft-ietf-bmwg-mlrsearch-00
index e64754f..c3369e6 100644 (file)
@@ -2,6 +2,8 @@
 
 See:
 https://packaging.python.org/en/latest/distributing.html
+
+TODO: Move as much as possible into setup.cfg
 """
 
 from setuptools import setup, find_packages
@@ -14,7 +16,7 @@ with open(path.join(here, u"README.rst"), encoding=u"utf-8") as f:
 
 setup(
     name=u"MLRsearch",
-    version=u"0.3.0",  # This is currently the only place listing the version.
+    version=u"0.4.0",  # This is currently the only place listing the version.
     description=u"Library for speeding up binary search using shorter measurements.",
     long_description=long_description,
     long_description_content_type=u"text/x-rst",