Skip to content

Commit

Permalink
perf: update requirements, docs and workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
luisfelipec95 committed Jul 31, 2024
1 parent 7799bea commit e90ff2a
Show file tree
Hide file tree
Showing 17 changed files with 239 additions and 171 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v5
- uses: wagoid/commitlint-github-action@v6.0.1
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
tutor_version: ["<17.0.0", "<18.0.0"]
tutor_version: ["<17.0.0", "<18.0.0", "<19.0.0"]
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
name: Label the PR size
steps:
- uses: codelytv/pr-size-labeler@v1.7.0
- uses: codelytv/pr-size-labeler@v1.10.0
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
xs_max_size: '10'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_issue_assignment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Auto-assign PR-Issue'
uses: pozil/auto-assign-issue@v1.13.0
uses: pozil/auto-assign-issue@v2.0.0
with:
repo-token: ${{ secrets.DEDALO_PAT }}
teams: django-plugins-tahoau
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: |
python -m build --sdist --wheel --outdir dist/ .
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
uses: pypa/gh-action-pypi-publish@1.9.0
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on ## [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to ## [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v7.2.0](https://github.com/eduNEXT/eox-tagging/compare/v7.1.0...v7.2.0) - (2024-07-31)

### Added

- **Integration Tests**: A new GitHub workflow has been added to run
integration tests. These tests validate backend imports and ensure the
`/eox-info` endpoint functions correctly.

### Changed

- **Redwood Support**: Updated requirements based on the edx-platform Redwood release. Revised integration tests to use the new Redwood release with Tutor.
release update GitHub workflows with new Python (3.10 and 3.11) and actions
version, and update integration test to use new redwood release with Tutor.

## v7.1.0 - 2024-03-19

### [7.1.0](https://github.com/eduNEXT/eox-tagging/compare/v7.0.0...v7.1.0) (2024-03-19)
Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ Compatibility Notes
+------------------+--------------+
| Quince | >= 7.0 |
+------------------+--------------+
| Redwood | >= 7.2.0 |
+------------------+--------------+

The plugin is configured for the latest release (Quince). The following changes in the plugin settings should be applied to be used for previous releases.
Those settings can be changed in `eox_tagging/settings/common.py`` or, for example, in the instance configurations.
Expand Down
2 changes: 1 addition & 1 deletion eox_tagging/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

from __future__ import unicode_literals

__version__ = '7.1.0'
__version__ = '7.2.0'
Loading

0 comments on commit e90ff2a

Please sign in to comment.