Skip to content

Commit

Permalink
📦 release: v17.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
slint committed Nov 27, 2024
1 parent afa3115 commit af5cd94
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 9 deletions.
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@
Changes
=======

Version v17.5.0 (released 2024-11-27)

- subcommunities: implement invitation request
* Allows parent communities to create requests to invite other
communities as their children.
- config: add LogoNotFoundError
- communities: config: Update static page URLs to prevent name collisions

Version v17.4.0 (released 2024-11-11)

- admin: change default number of results from 10 to 20
Expand Down
2 changes: 1 addition & 1 deletion invenio_communities/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
from .ext import InvenioCommunities
from .proxies import current_communities

__version__ = "17.4.0"
__version__ = "17.5.0"

__all__ = ("InvenioCommunities", "current_communities")
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* // This file is part of Invenio-App-Rdm
* // Copyright (C) 2023 CERN.
* // Copyright (C) 2023-2024 CERN.
* //
* // Invenio-App-Rdm 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* // This file is part of Invenio-App-Rdm
* // Copyright (C) 2023 CERN.
* // Copyright (C) 2023-2024 CERN.
* //
* // Invenio-App-Rdm 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* // This file is part of Invenio-Communities
* // Copyright (C) 2023 CERN.
* // Copyright (C) 2023-2024 CERN.
* //
* // Invenio-App-Rdm 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* // This file is part of Invenio-App-Rdm
* // Copyright (C) 2023 CERN.
* // Copyright (C) 2023-2024 CERN.
* //
* // Invenio-App-Rdm 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* // This file is part of Invenio-Communities
* // Copyright (C) 2023 CERN.
* // Copyright (C) 2023-2024 CERN.
* //
* // Invenio-Communities 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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This file is part of InvenioRDM
// Copyright (C) 2023 CERN.
// Copyright (C) 2023-2024 CERN.
//
// InvenioRDM 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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{# -*- coding: utf-8 -*-

This file is part of Invenio.
Copyright (C) 2016-2020 CERN.
Copyright (C) 2016-2024 CERN.

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
2 changes: 1 addition & 1 deletion invenio_communities/views/decorators.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
# Copyright (C) 2016-2022 CERN.
# Copyright (C) 2016-2024 CERN.
#
# 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

0 comments on commit af5cd94

Please sign in to comment.