Skip to content
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
24 changes: 5 additions & 19 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Invenio.
# Copyright (C) 2016-2024 CERN.
# Copyright (C) 2022-2024 Graz University of Technology.
# Copyright (C) 2022-2025 Graz University of Technology.
#
# Invenio is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more details.
Expand Down Expand Up @@ -31,21 +31,7 @@ jobs:
python-tests:
uses: inveniosoftware/workflows/.github/workflows/tests-python.yml@master

node-tests:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
node-version: [20.x]
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Run eslint test
run: ./run-js-linter.sh -i

JS:
uses: inveniosoftware/workflows/.github/workflows/tests-js.yml@master
with:
translations-working-directory: ./invenio_communities/assets/semantic-ui/translations/invenio_communities/
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
..
This file is part of Invenio.
Copyright (C) 2016-2024 CERN.
Copyright (C) 2025 Graz University of Technology.

Invenio is free software; you can redistribute it and/or modify it
under the terms of the MIT License; see LICENSE file for more details.
Expand All @@ -9,6 +10,11 @@
Changes
=======

Version 13.1.0 (released 2025-04-29)

- i18n: pulled translations
- i18n: push translations

Version 13.0.11 (released 2025-03-18)

- i18n: add missing translations for community settings
Expand Down
4 changes: 2 additions & 2 deletions invenio_communities/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Invenio.
# Copyright (C) 2016-2024 CERN.
# Copyright (C) 2024 Graz University of Technology.
# Copyright (C) 2024-2025 Graz University of Technology.
#
# Invenio is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand All @@ -12,6 +12,6 @@
from .ext import InvenioCommunities
from .proxies import current_communities

__version__ = "13.0.11"
__version__ = "13.1.0"

__all__ = ("InvenioCommunities", "current_communities")
Loading