diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d59cba6a..9b3dd068 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,22 @@ +1.2.0 (2018-10-24) +================== + +Features +-------- + +- ``Pipfile`` and ``Lockfile`` models will now properly perform import and export operations with fully data serialization. #83 + +- Added a new interface for merging ``dev`` and ``default`` sections in both ``Pipfile`` and ``Lockfile`` objects using ``get_deps(dev=True, only=False)``. #85 + + +Bug Fixes +--------- + +- ``Requirement.as_line()`` now provides an argument to make the inclusion of markers optional by passing ``include_markers=False``. #82 + +- ``Pipfile`` and ``Lockfile`` models are now able to successfully perform creation operations on projects which currently do not have existing files if supplied ``create=True``. #84 + + 1.1.9 (2018-10-10) ================== diff --git a/news/82.bugfix.rst b/news/82.bugfix.rst deleted file mode 100644 index 84d2e588..00000000 --- a/news/82.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -``Requirement.as_line()`` now provides an argument to make the inclusion of markers optional by passing ``include_markers=False``. diff --git a/news/83.feature.rst b/news/83.feature.rst deleted file mode 100644 index c14c0207..00000000 --- a/news/83.feature.rst +++ /dev/null @@ -1 +0,0 @@ -``Pipfile`` and ``Lockfile`` models will now properly perform import and export operations with fully data serialization. diff --git a/news/84.bugfix.rst b/news/84.bugfix.rst deleted file mode 100644 index c63d3abc..00000000 --- a/news/84.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -``Pipfile`` and ``Lockfile`` models are now able to successfully perform creation operations on projects which currently do not have existing files if supplied ``create=True``. diff --git a/news/85.feature.rst b/news/85.feature.rst deleted file mode 100644 index c2c8a7ce..00000000 --- a/news/85.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added a new interface for merging ``dev`` and ``default`` sections in both ``Pipfile`` and ``Lockfile`` objects using ``get_deps(dev=True, only=False)``. diff --git a/src/requirementslib/__init__.py b/src/requirementslib/__init__.py index 1178d9b8..7b4b6376 100644 --- a/src/requirementslib/__init__.py +++ b/src/requirementslib/__init__.py @@ -1,5 +1,5 @@ # -*- coding=utf-8 -*- -__version__ = '1.1.10.dev0' +__version__ = '1.2.0' from .models.requirements import Requirement from .models.lockfile import Lockfile