diff --git a/CHANGES.rst b/CHANGES.rst index c9549ee..5055c03 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,13 @@ Changes ======= +Version 0.6.0 (2019-12-19) +-------------------------- + +- Adds fixtures for secrets store. +- Centralises test requirements. +- Adds Python 3.8 support. + Version 0.5.0 (2019-04-16) -------------------------- diff --git a/docs/conf.py b/docs/conf.py index 0da2202..1fed244 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of REANA. -# Copyright (C) 2018 CERN. +# Copyright (C) 2018, 2019 CERN. # # REANA is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details. @@ -55,7 +55,7 @@ # General information about the project. project = 'reana' -copyright = '2018, info@reana.io' +copyright = '2018-2019, info@reana.io' author = 'info@reana.io' # The version info for the project you're documenting, acts as replacement for diff --git a/pytest_reana/version.py b/pytest_reana/version.py index ebf0556..717e885 100755 --- a/pytest_reana/version.py +++ b/pytest_reana/version.py @@ -14,4 +14,4 @@ from __future__ import absolute_import, print_function -__version__ = "0.6.0.dev20190705" +__version__ = "0.6.0" diff --git a/setup.py b/setup.py index a352551..07ba811 100755 --- a/setup.py +++ b/setup.py @@ -50,8 +50,8 @@ 'pytest-cov>=1.8.0', 'pytest-pep8>=1.0.6', 'pytest>=3.8.0,<5.0.0', - 'reana-commons[kubernetes]>=0.5.0.dev20190416', - 'reana-db>=0.5.0.dev20190416', + 'reana-commons[kubernetes]>=0.6.0.dev20191212', + 'reana-db>=0.6.0.dev20191213', 'swagger_spec_validator>=2.1.0', ] packages = find_packages()