Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

feat!: mark the repository as deprecated (v1.4.1) #318

Merged
merged 1 commit into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/openedx/blockstore/issues/314>`_!
This is the final release.
Please use `Learing Core <https://github.com/openedx/openedx-learning/>` instead.

Unreleased
~~~~~~~~~~
Changed
_______

* Removed custom datetime parser in favor of ``datetime.fromisoformat`` which is more robust.

Expand Down
16 changes: 12 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,18 @@
Blockstore
==========

|status-badge| |license-badge| |ci-badge|
----------
⚠️ NOTICE ⚠️
----------

Blockstore has been `deprecated <https://github.com/openedx/blockstore/issues/314>`_.
It will no longer receive maintenance, bugfixes, PRs, requests, or security patches.

Please check out the
`Learning Core <https://github.com/openedx/openedx-learning/>`_ project instead,
which continues the goals of Blockstore.

|license-badge| |ci-badge|

-------
Purpose
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion blockstore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Blockstore is a system for storing educational content.
"""

__version__ = '1.4.0'
__version__ = '1.4.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
Loading