summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst9
-rw-r--r--setup.py2
2 files changed, 6 insertions, 5 deletions
diff --git a/README.rst b/README.rst
index cf42177..abd3fbf 100644
--- a/README.rst
+++ b/README.rst
@@ -199,14 +199,15 @@ installed with e.g.
$ pip(3) install kconfiglib --user
-All releases have a corresponding tag in the git repository, e.g. ``v4.3.0``
+All releases have a corresponding tag in the git repository, e.g. ``v5.0.0``
(the latest version).
`Semantic versioning <http://semver.org/>`_ is used. There's been
-two small changes (`1 <https://github.com/ulfalizer/Kconfiglib/commit/e8b4ecb6ff6ccc1c7be0818314fbccda2ef2b2ee>`_,
-`2 <https://github.com/ulfalizer/Kconfiglib/commit/db633015a4d7b0ba1e882f665e191f350932b2af>`_)
+three small changes (`1 <https://github.com/ulfalizer/Kconfiglib/commit/e8b4ecb6ff6ccc1c7be0818314fbccda2ef2b2ee>`_,
+`2 <https://github.com/ulfalizer/Kconfiglib/commit/db633015a4d7b0ba1e882f665e191f350932b2af>`_,
+`3 <https://github.com/ulfalizer/Kconfiglib/commit/8983f7eb297dd614faf0beee3129559bc8ba338e>`_)
to the behavior of the API (which I don't think will affect anyone), which is
-why the major version is at 4 rather than 2.
+why the major version is at 5 rather than 2.
Installation for the Linux kernel
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/setup.py b/setup.py
index f0f3abe..4e0676d 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import setuptools
setuptools.setup(
name="kconfiglib",
# MAJOR.MINOR.PATCH, per http://semver.org
- version="4.3.0",
+ version="5.0.0",
description="A flexible Python Kconfig parser",
long_description=
open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),