From 48ec2b341eabe2489ddd71fa553707c04129ef98 Mon Sep 17 00:00:00 2001 From: Ashley Whetter Date: Mon, 12 Apr 2021 20:46:07 -0700 Subject: [PATCH] Version 1.8.0 --- CHANGELOG.rst | 4 ++-- autoapi/__init__.py | 4 ++-- docs/maintenance/release-process.rst | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 412ad91..12f9e2c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,8 +3,8 @@ Changelog Versions follow `Semantic Versioning `_ (``..``). -UNRELEASED (TBC) ----------------- +v1.8.0 (2021-04-12) +------------------- Features ^^^^^^^^ diff --git a/autoapi/__init__.py b/autoapi/__init__.py index ada2041..5b938b1 100644 --- a/autoapi/__init__.py +++ b/autoapi/__init__.py @@ -3,5 +3,5 @@ from .extension import setup -__version__ = "1.7.0" -__version_info__ = (1, 7, 0) +__version__ = "1.8.0" +__version_info__ = (1, 8, 0) diff --git a/docs/maintenance/release-process.rst b/docs/maintenance/release-process.rst index 14d3c1f..a6bc92e 100644 --- a/docs/maintenance/release-process.rst +++ b/docs/maintenance/release-process.rst @@ -9,7 +9,7 @@ Pre-Checks 1. Check that the dependencies of the package are correct. 2. Clean the ``.tox`` directory and run the tests. 3. Commit and push any changes needed to make the tests pass. -4. Check that the tests passed on travis and appveyor. +4. Check that the tests passed on github. Preparation ----------- @@ -18,7 +18,7 @@ Preparation 2. Add any missing changelog entries. 3. Put the version number and release date into the changelog. 4. Commit and push the changes. -5. Check that the tests passed on travis and appveyor. +5. Check that the tests passed on github. Release -------