BCDA-APS / bluesky_training

Bluesky training, including instrument package
https://bcda-aps.github.io/bluesky_training/
Other
11 stars 0 forks source link

update/extend copyright year to include 2024 #269

Closed prjemian closed 4 months ago

prjemian commented 4 months ago

Similar to https://github.com/BCDA-APS/apstools/issues/921 and https://github.com/nexusformat/definitions/issues/1355, update the project's copyright notices to the current year.

Do this in a branch with a PR.

prjemian commented 4 months ago

Planning to use a tool from my murky package:

update_copyright_date -dvv . "UChicago Argonne, LLC"

but since the existing copyright notices are not up to date, I'll catch them up in steps (2022, 2023, then 2024):

$ grep -iIR "(c)" | grep UChicago
bluesky/qserver.sh:# :copyright: (c) 2017-2022, UChicago Argonne, LLC
LICENSE.txt:Copyright (c) 2017-2021, UChicago Argonne, LLC
prjemian commented 4 months ago
$ update_copyright_date -vv . "UChicago Argonne, LLC" -y 2022 2>&1 | grep UChicago
---: '# :copyright: (c) 2017-2022, UChicago Argonne, LLC\n'
+++: '# :copyright: (c) 2017-2022, UChicago Argonne, LLC\n'
---: 'Copyright (c) 2017-2021, UChicago Argonne, LLC\n'
+++: 'Copyright (c) 2017-2022, UChicago Argonne, LLC\n'
$ update_copyright_date -vv . "UChicago Argonne, LLC" -y 2023 2>&1 | grep UChicago
---: '# :copyright: (c) 2017-2022, UChicago Argonne, LLC\n'
+++: '# :copyright: (c) 2017-2023, UChicago Argonne, LLC\n'
---: 'Copyright (c) 2017-2022, UChicago Argonne, LLC\n'
+++: 'Copyright (c) 2017-2023, UChicago Argonne, LLC\n'
$ update_copyright_date -vv . "UChicago Argonne, LLC" -y 2024 2>&1 | grep UChicago
---: '# :copyright: (c) 2017-2023, UChicago Argonne, LLC\n'
+++: '# :copyright: (c) 2017-2024, UChicago Argonne, LLC\n'
---: 'Copyright (c) 2017-2023, UChicago Argonne, LLC\n'
+++: 'Copyright (c) 2017-2024, UChicago Argonne, LLC\n'