From 119b814531114f8d204760e1e86e1200a2bcd517 Mon Sep 17 00:00:00 2001 From: Andrea Zoppi Date: Tue, 23 Jan 2024 20:11:16 +0100 Subject: [PATCH] Updated year Signed-off-by: Andrea Zoppi --- CHANGELOG.rst | 2 +- LICENSE | 2 +- docs/conf.py | 2 +- src/hexrec/__init__.py | 2 +- src/hexrec/__main__.py | 2 +- src/hexrec/cli.py | 2 +- src/hexrec/formats/__init__.py | 2 +- src/hexrec/formats/ascii_hex.py | 2 +- src/hexrec/formats/binary.py | 2 +- src/hexrec/formats/intel.py | 2 +- src/hexrec/formats/mos.py | 2 +- src/hexrec/formats/motorola.py | 2 +- src/hexrec/formats/tektronix.py | 2 +- src/hexrec/records.py | 2 +- src/hexrec/utils.py | 2 +- src/hexrec/xxd.py | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2ce948e..ca50691 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,7 @@ Changelog ========= -0.3.1 (TBD) +0.3.1 (2024-01-23) ------------------ * Added support for Python 3.12. diff --git a/LICENSE b/LICENSE index 1d3fb00..2a00774 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ BSD 2-Clause License -Copyright (c) 2013-2023, Andrea Zoppi +Copyright (c) 2013-2024, Andrea Zoppi All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/docs/conf.py b/docs/conf.py index 3df4f27..3e9a1e6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -32,7 +32,7 @@ def read_version(): source_suffix = '.rst' master_doc = 'index' project = 'hexrec' -year = '2013-2023' +year = '2013-2024' author = 'Andrea Zoppi' copyright = f'{year}, {author}' version = release = read_version() diff --git a/src/hexrec/__init__.py b/src/hexrec/__init__.py index 89862f1..5f6b7cb 100644 --- a/src/hexrec/__init__.py +++ b/src/hexrec/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023, Andrea Zoppi +# Copyright (c) 2013-2024, Andrea Zoppi # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/hexrec/__main__.py b/src/hexrec/__main__.py index d30540a..f79a6c2 100644 --- a/src/hexrec/__main__.py +++ b/src/hexrec/__main__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023, Andrea Zoppi +# Copyright (c) 2013-2024, Andrea Zoppi # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/hexrec/cli.py b/src/hexrec/cli.py index 2816160..0f94bd7 100644 --- a/src/hexrec/cli.py +++ b/src/hexrec/cli.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023, Andrea Zoppi +# Copyright (c) 2013-2024, Andrea Zoppi # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/hexrec/formats/__init__.py b/src/hexrec/formats/__init__.py index d2e7112..560c63d 100644 --- a/src/hexrec/formats/__init__.py +++ b/src/hexrec/formats/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023, Andrea Zoppi +# Copyright (c) 2013-2024, Andrea Zoppi # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/hexrec/formats/ascii_hex.py b/src/hexrec/formats/ascii_hex.py index b5d850e..8d1779b 100644 --- a/src/hexrec/formats/ascii_hex.py +++ b/src/hexrec/formats/ascii_hex.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023, Andrea Zoppi +# Copyright (c) 2013-2024, Andrea Zoppi # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/hexrec/formats/binary.py b/src/hexrec/formats/binary.py index d727e55..8fe516a 100644 --- a/src/hexrec/formats/binary.py +++ b/src/hexrec/formats/binary.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023, Andrea Zoppi +# Copyright (c) 2013-2024, Andrea Zoppi # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/hexrec/formats/intel.py b/src/hexrec/formats/intel.py index 9bdc0b2..6543722 100644 --- a/src/hexrec/formats/intel.py +++ b/src/hexrec/formats/intel.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023, Andrea Zoppi +# Copyright (c) 2013-2024, Andrea Zoppi # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/hexrec/formats/mos.py b/src/hexrec/formats/mos.py index 1a593f0..68f2132 100644 --- a/src/hexrec/formats/mos.py +++ b/src/hexrec/formats/mos.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023, Andrea Zoppi +# Copyright (c) 2013-2024, Andrea Zoppi # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/hexrec/formats/motorola.py b/src/hexrec/formats/motorola.py index 233191f..155f7ba 100644 --- a/src/hexrec/formats/motorola.py +++ b/src/hexrec/formats/motorola.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023, Andrea Zoppi +# Copyright (c) 2013-2024, Andrea Zoppi # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/hexrec/formats/tektronix.py b/src/hexrec/formats/tektronix.py index 590242b..6555dd3 100644 --- a/src/hexrec/formats/tektronix.py +++ b/src/hexrec/formats/tektronix.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023, Andrea Zoppi +# Copyright (c) 2013-2024, Andrea Zoppi # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/hexrec/records.py b/src/hexrec/records.py index 0847a2f..10d7517 100644 --- a/src/hexrec/records.py +++ b/src/hexrec/records.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023, Andrea Zoppi +# Copyright (c) 2013-2024, Andrea Zoppi # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/hexrec/utils.py b/src/hexrec/utils.py index 853a5f3..f2408d7 100644 --- a/src/hexrec/utils.py +++ b/src/hexrec/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023, Andrea Zoppi +# Copyright (c) 2013-2024, Andrea Zoppi # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/hexrec/xxd.py b/src/hexrec/xxd.py index a91ecf3..87b85ee 100644 --- a/src/hexrec/xxd.py +++ b/src/hexrec/xxd.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023, Andrea Zoppi +# Copyright (c) 2013-2024, Andrea Zoppi # All rights reserved. # # Redistribution and use in source and binary forms, with or without