From ac08e419457669990ad0bd85ff347eb58972cf17 Mon Sep 17 00:00:00 2001 From: Kyle McCormick Date: Thu, 15 Feb 2024 16:28:53 -0500 Subject: [PATCH] feat!: mark the repository as deprecated (v1.4.1) (#318) Ref: https://github.com/openedx/blockstore/issues/314 --- CHANGELOG.rst | 11 ++++++++--- README.rst | 16 ++++++++++++---- blockstore/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 22 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9012fde..8f5d875 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,10 +9,15 @@ Change Log This project adheres to Semantic Versioning (https://semver.org/). -.. There should always be an "Unreleased" section for changes pending release. +[1.4.1] - 2024-02-15 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This package is now `DEPRECATED `_! +This is the final release. +Please use `Learing Core ` instead. -Unreleased -~~~~~~~~~~ +Changed +_______ * Removed custom datetime parser in favor of ``datetime.fromisoformat`` which is more robust. diff --git a/README.rst b/README.rst index 442329a..3b88d7b 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,18 @@ Blockstore ========== -|status-badge| |license-badge| |ci-badge| +---------- +⚠️ NOTICE ⚠️ +---------- + +Blockstore has been `deprecated `_. +It will no longer receive maintenance, bugfixes, PRs, requests, or security patches. + +Please check out the +`Learning Core `_ project instead, +which continues the goals of Blockstore. + +|license-badge| |ci-badge| ------- Purpose @@ -267,9 +278,6 @@ Please do not report security issues in public. Please email security@openedx.or :target: https://github.com/openedx/blockstore/actions :alt: Test suite status -.. |status-badge| image:: https://img.shields.io/badge/Status-Maintained-brightgreen - :alt: Maintained - .. |license-badge| image:: https://img.shields.io/github/license/openedx/blockstore.svg :target: https://github.com/openedx/blockstore/blob/master/LICENSE :alt: License diff --git a/blockstore/__init__.py b/blockstore/__init__.py index aaaedd1..f24da67 100644 --- a/blockstore/__init__.py +++ b/blockstore/__init__.py @@ -2,4 +2,4 @@ Blockstore is a system for storing educational content. """ -__version__ = '1.4.0' +__version__ = '1.4.1' diff --git a/setup.py b/setup.py index afaecd9..30848b5 100755 --- a/setup.py +++ b/setup.py @@ -78,7 +78,7 @@ def is_requirement(line): zip_safe=False, keywords='Python edx', classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 7 - Inactive', 'Framework :: Django', 'Framework :: Django :: 3.2', 'Intended Audience :: Developers',