Skip to content

Commit

Permalink
Extend documentation copyright to current year
Browse files Browse the repository at this point in the history
Ref. None
  • Loading branch information
senier committed Dec 2, 2024
1 parent 0488bd8 commit f229b3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion doc/language_reference/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"""

import sys
from datetime import datetime
from pathlib import Path

from sphinx.highlighting import lexers
Expand All @@ -21,7 +22,7 @@
# -- Project information -----------------------------------------------------

project = "RecordFlux"
copyright = "2023, AdaCore" # noqa: A001
copyright = f"2023-{datetime.now().year}, AdaCore" # noqa: A001, DTZ005
author = "AdaCore"
recordflux_version = __version__
version = recordflux_version
Expand Down
3 changes: 2 additions & 1 deletion doc/user_guide/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"""

import sys
from datetime import datetime
from pathlib import Path

from sphinx.highlighting import lexers
Expand All @@ -21,7 +22,7 @@
# -- Project information -----------------------------------------------------

project = "RecordFlux"
copyright = "2023, AdaCore" # noqa: A001
copyright = f"2023-{datetime.now().year}, AdaCore" # noqa: A001, DTZ005
author = "AdaCore"
recordflux_version = __version__
version = recordflux_version
Expand Down

0 comments on commit f229b3a

Please sign in to comment.