Skip to content

Commit

Permalink
Release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
techalchemy committed Oct 24, 2018
1 parent b7846e2 commit 7cce3d3
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 5 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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)
==================

Expand Down
1 change: 0 additions & 1 deletion news/82.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/83.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/84.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/85.feature.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/requirementslib/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 7cce3d3

Please sign in to comment.