
Simon Hengel pushed to branch wip/sol/docs-copyright at Glasgow Haskell Compiler / GHC Commits: f593bdbe by Simon Hengel at 2025-09-28T07:00:26+07:00 Update copyright in documentation - - - - - 1 changed file: - docs/users_guide/conf.py Changes: ===================================== docs/users_guide/conf.py ===================================== @@ -7,6 +7,7 @@ # import sys import os +from datetime import datetime, timezone # Support for :base-ref:, etc. sys.path.insert(0, os.path.abspath('.')) @@ -44,7 +45,7 @@ rst_prolog = """ # General information about the project. project = u'Glasgow Haskell Compiler' -copyright = u'2023, GHC Team' +copyright = f"{datetime.now(timezone.utc).year}, GHC Team" # N.B. version comes from ghc_config release = version # The full version, including alpha/beta/rc tags. View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/f593bdbee18c12772cb733c1dacc2520... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/f593bdbee18c12772cb733c1dacc2520... You're receiving this email because of your account on gitlab.haskell.org.