Compare commits

...

1 Commits

Author SHA1 Message Date
Syed Muhammad Dawoud Sheraz Ali
931eafeca7 feat!: Rename branches master->release, nightly->main 2024-11-19 16:47:14 +05:00
5 changed files with 9 additions and 4 deletions

View File

@ -2,7 +2,7 @@ name: Sync with private repo
on: on:
push: push:
branches: [ master, main, nightly ] branches: [ release, main ]
jobs: jobs:
sync: sync:

View File

@ -2,7 +2,9 @@ name: Run tests
on: on:
pull_request: pull_request:
branches: [master] branches: [ release, main ]
push:
branches: [ release, main ]
jobs: jobs:
tests: tests:

View File

@ -59,4 +59,4 @@ This Tutor plugin is maintained by Jhony Avella from `eduNEXT <https://www.edune
License License
------- -------
This software is licensed under the terms of the `GNU Affero General Public License (AGPL) <https://github.com/overhangio/tutor-notes/blob/master/LICENSE.txt>`_. This software is licensed under the terms of the `GNU Affero General Public License (AGPL) <https://github.com/overhangio/tutor-notes/blob/release/LICENSE.txt>`_.

View File

@ -0,0 +1,3 @@
- 💥[Improvement] Rename Tutor's two branches (by @DawoudSheraz):
* Rename **master** to **release**, as this branch runs the latest official Open edX release tag.
* Rename **nightly** to **main**, as this branch runs the Open edX master branches, which are the basis for the next Open edX release.

View File

@ -10,7 +10,7 @@ from tutor.__about__ import __version_suffix__
from .__about__ import __version__ from .__about__ import __version__
# Handle version suffix in nightly mode, just like tutor core # Handle version suffix in main mode, just like tutor core
if __version_suffix__: if __version_suffix__:
__version__ += "-" + __version_suffix__ __version__ += "-" + __version_suffix__