From a92a558b480f3e3441f1d08bd04b4cdb33a5cdc5 Mon Sep 17 00:00:00 2001 From: "Kyle D. McCormick" Date: Thu, 15 Feb 2024 15:51:41 -0500 Subject: [PATCH] feat!: mark the repository as deprecated (v1.4.1) Ref: https://github.com/openedx/blockstore/issues/314 --- CHANGELOG.rst | 11 ++++++++--- README.rst | 11 +++++++++++ blockstore/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 21 insertions(+), 5 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..42f17d8 100644 --- a/README.rst +++ b/README.rst @@ -2,6 +2,17 @@ Blockstore ========== +---------- +⚠️ 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. + |status-badge| |license-badge| |ci-badge| ------- 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',