diff --git a/README.rst b/README.rst index 3aefe28..6dea8c2 100644 --- a/README.rst +++ b/README.rst @@ -270,6 +270,11 @@ put it directly into ``pip``. Version History =============== +0.14.5 + * When writing down hashes, they are now done in a lexigraphically ordered + way. This makes the writes to the requirements file more predictable. + See https://github.com/peterbe/hashin/issues/105 + 0.14.4 * Bugfix for new ``--index-url`` option feature in version 0.14.3. See https://github.com/peterbe/hashin/issues/108 diff --git a/setup.py b/setup.py index e42b8ab..48eac15 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name="hashin", - version="0.14.4", + version="0.14.5", description="Edits your requirements.txt by hashing them in", long_description=open(path.join(_here, "README.rst")).read(), author="Peter Bengtsson",