Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump version to 0.2.0 #5

Merged
merged 2 commits into from
Mar 5, 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
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ Unreleased

*

0.2.0 – 2024-03-05
******************
Added
=====

* Imported code from event-sink-clickhouse.

0.1.0 – 2024-02-29
**********************************************

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def get_version(*file_paths):
project = "platform-plugin-aspects"
copyright = f"{datetime.now().year}, Axim Collaborative, Inc." # pylint: disable=redefined-builtin
author = "Axim Collaborative, Inc."
project_title = "platform-plugin-aspects"
project_title = "Platform Plugin Aspects"
documentation_title = f"{project_title}"

# Set display_github to False if you don't want "edit on Github" button
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.

platform-plugin-aspects
Platform Plugin Aspects
=======================

Aspects plugins for edx-platform
Expand Down
2 changes: 1 addition & 1 deletion platform_plugin_aspects/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
import os
from pathlib import Path

__version__ = "0.1.0"
__version__ = "0.2.0"

ROOT_DIRECTORY = Path(os.path.dirname(os.path.abspath(__file__)))
Loading