diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c42332cd..d2c53a5d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,18 @@ +1.5.16 (2020-11-12) +=================== + +Features +-------- + +- Expand env vars in the URL of requirements. `#276 `_ + + +Removals and Deprecations +------------------------- + +- Replace the deprecated arguments of ``attrs`` with recommended ones. `#271 `_ + + 1.5.15 (2020-11-04) =================== diff --git a/news/271.removal.rst b/news/271.removal.rst deleted file mode 100644 index 4774acc8..00000000 --- a/news/271.removal.rst +++ /dev/null @@ -1 +0,0 @@ -Replace the deprecated arguments of ``attrs`` with recommended ones. diff --git a/news/276.feature.rst b/news/276.feature.rst deleted file mode 100644 index fc80c7bf..00000000 --- a/news/276.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Expand env vars in the URL of requirements. diff --git a/src/requirementslib/__init__.py b/src/requirementslib/__init__.py index 5cea98ef..a3ce1d75 100644 --- a/src/requirementslib/__init__.py +++ b/src/requirementslib/__init__.py @@ -10,7 +10,7 @@ from .models.pipfile import Pipfile from .models.requirements import Requirement -__version__ = "1.5.16.dev0" +__version__ = "1.5.16" logger = logging.getLogger(__name__)