Skip to content

Commit cbd0acf

Browse files
committed
relase: v4.0.0
1 parent 1fa6be4 commit cbd0acf

File tree

15 files changed

+21
-16
lines changed

15 files changed

+21
-16
lines changed

CHANGES.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
..
22
This file is part of Invenio.
3-
Copyright (C) 2015-2023 CERN.
3+
Copyright (C) 2015-2024 CERN.
44
55
Invenio is free software; you can redistribute it and/or modify it
66
under the terms of the MIT License; see LICENSE file for more details.
77

88
Changes
99
=======
1010

11+
Version 4.0.0 (released 2024-01-29)
12+
13+
- sessions: check for request before accessing session
14+
- global: new domain list feature
15+
1116
Version 3.5.1 (released 2023-12-10)
1217

1318
- views: disable registering of `settings.change_password` menu

invenio_accounts/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# This file is part of Invenio.
4-
# Copyright (C) 2015-2018 CERN.
4+
# Copyright (C) 2015-2024 CERN.
55
#
66
# Invenio is free software; you can redistribute it and/or modify it
77
# under the terms of the MIT License; see LICENSE file for more details.
@@ -54,7 +54,7 @@
5454
from .ext import InvenioAccounts, InvenioAccountsREST, InvenioAccountsUI
5555
from .proxies import current_accounts
5656

57-
__version__ = "3.5.1"
57+
__version__ = "4.0.0"
5858

5959
__all__ = (
6060
"__version__",

invenio_accounts/alembic/6ec5ce377ca3_create_domains.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# This file is part of Invenio.
3-
# Copyright (C) 2016-2018 CERN.
3+
# Copyright (C) 2016-2024 CERN.
44
#
55
# Invenio is free software; you can redistribute it and/or modify it
66
# under the terms of the MIT License; see LICENSE file for more details.

invenio_accounts/datastore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# This file is part of Invenio.
4-
# Copyright (C) 2015-2023 CERN.
4+
# Copyright (C) 2015-2024 CERN.
55
#
66
# Invenio is free software; you can redistribute it and/or modify it
77
# under the terms of the MIT License; see LICENSE file for more details.

invenio_accounts/domains.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# This file is part of Invenio.
4-
# Copyright (C) 2023 CERN.
4+
# Copyright (C) 2023-2024 CERN.
55
#
66
# Invenio is free software; you can redistribute it and/or modify it
77
# under the terms of the MIT License; see LICENSE file for more details.

invenio_accounts/ext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# This file is part of Invenio.
4-
# Copyright (C) 2015-2018 CERN.
4+
# Copyright (C) 2015-2024 CERN.
55
# Copyright (C) 2021 TU Wien.
66
#
77
# Invenio is free software; you can redistribute it and/or modify it

invenio_accounts/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# This file is part of Invenio.
4-
# Copyright (C) 2016-2018 CERN.
4+
# Copyright (C) 2016-2024 CERN.
55
#
66
# Invenio is free software; you can redistribute it and/or modify it
77
# under the terms of the MIT License; see LICENSE file for more details.

invenio_accounts/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# This file is part of Invenio.
4-
# Copyright (C) 2015-2023 CERN.
4+
# Copyright (C) 2015-2024 CERN.
55
# Copyright (C) 2022 KTH Royal Institute of Technology
66
#
77
# Invenio is free software; you can redistribute it and/or modify it

invenio_accounts/sessions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# This file is part of Invenio.
4-
# Copyright (C) 2015-2018 CERN.
4+
# Copyright (C) 2015-2024 CERN.
55
#
66
# Invenio is free software; you can redistribute it and/or modify it
77
# under the terms of the MIT License; see LICENSE file for more details.

invenio_accounts/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# This file is part of Invenio.
4-
# Copyright (C) 2017-2018 CERN.
4+
# Copyright (C) 2017-2024 CERN.
55
#
66
# Invenio is free software; you can redistribute it and/or modify it
77
# under the terms of the MIT License; see LICENSE file for more details.

0 commit comments

Comments
 (0)