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

feat: upgrade to quince #28

Merged
merged 26 commits into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
31d8df6
docs: change quickstart to launch
Sep 20, 2022
b15161b
Merge remote-tracking branch 'origin/master' into nightly
Feb 7, 2023
1fd152e
Merge remote-tracking branch 'origin/master' into nightly
Feb 7, 2023
d455fd3
Merge branch 'master' into nightly
regisb Mar 15, 2023
ce86c46
Merge remote-tracking branch 'origin/master' into nightly
Mar 15, 2023
310d10b
Merge remote-tracking branch 'origin/master' into nightly
Mar 22, 2023
4976bdf
Merge remote-tracking branch 'origin/master' into nightly
Apr 1, 2023
0edb2fb
Merge remote-tracking branch 'origin/master' into nightly
May 16, 2023
661e988
Merge remote-tracking branch 'origin/master' into nightly
May 16, 2023
4fed8e0
Merge remote-tracking branch 'origin/master' into nightly
May 17, 2023
c51115f
Merge remote-tracking branch 'origin/master' into nightly
May 19, 2023
cf7c1f0
Merge remote-tracking branch 'origin/master' into nightly
May 26, 2023
125fdcf
Merge remote-tracking branch 'origin/master' into nightly
May 26, 2023
c6c3c09
feat: label nightly version
regisb May 26, 2023
f69e464
fix: nightly package version
regisb May 26, 2023
5bed31a
Merge branch 'master' into nightly
regisb Jun 14, 2023
b9bcef3
Merge remote-tracking branch 'origin/master' into nightly
Jun 27, 2023
f39789a
Merge remote-tracking branch 'origin/master' into nightly
Sep 7, 2023
9186723
Merge remote-tracking branch 'origin/master' into nightly
Sep 14, 2023
5389d67
Merge remote-tracking branch 'origin/master' into nightly
Oct 2, 2023
d04f2d0
Merge remote-tracking branch 'origin/master' into nightly
Oct 3, 2023
7b379fd
Merge remote-tracking branch 'origin/master' into nightly
Oct 17, 2023
9748209
Merge branch 'master' into nightly
regisb Nov 20, 2023
3a6a7a1
Merge remote-tracking branch 'origin/master' into nightly
Dec 5, 2023
c90092c
Merge remote-tracking branch 'origin/master' into nightly
Dec 8, 2023
ef0d899
feat: upgrade to quince
ghassanmas Oct 27, 2023
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ instructions, because git commits are used to generate release notes:

<!-- scriv-insert-here -->

<a id='changelog-17.0.0'></a>
## v17.0.0 (2023-12-09)

- 💥[Feature] Upgrade to Quince. (by @ghassanmas)

<a id='changelog-16.0.2'></a>
## v16.0.2 (2023-12-08)

Expand Down
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ Once a local repository is mounted in the image, you will have to install all ge
Troubleshooting
---------------

This Tutor plugin is maintained by Ghassan Maslamani from `Zaat.dev <https://Zaat.dev>`__. Community support is available from the official `Open edX forum <https://discuss.openedx.org>`__. Do you need help with this plugin? See the `troubleshooting <https://docs.tutor.edly.io/troubleshooting.html>`__ section from the Tutor documentation.

This Tutor plugin is maintained by Ghassan Maslamani from `Abstract-Technology <https://abstract-technology.de>`__. Community support is available from the official `Open edX forum <https://discuss.openedx.org>`__. Do you need help with this plugin? See the `troubleshooting <https://docs.tutor.edly.io/troubleshooting.html>`__ section from the Tutor documentation.

License
-------
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ def load_about():
},
license="AGPLv3",
author="Overhang.IO",
maintainer="Zaat.dev",
maintainer_email="[email protected]",
maintainer="abstract-technology.de",
maintainer_email="[email protected]",
description="forum plugin for Tutor",
long_description=load_readme(),
long_description_content_type="text/x-rst",
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.8",
install_requires=["tutor>=16.0.0,<17.0.0"],
extras_require={"dev": "tutor[dev]>=16.0.0,<17.0.0"},
install_requires=["tutor>=17.0.0,<18.0.0"],
extras_require={"dev": "tutor[dev]>=17.0.0,<18.0.0"},
entry_points={
"tutor.plugin.v1": [
"forum = tutorforum.plugin"
Expand Down
2 changes: 1 addition & 1 deletion tutorforum/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "16.0.2"
__version__ = "17.0.0"
Loading