Skip to content

Commit 3b2e3a2

Browse files
committed
Updated version
Signed-off-by: Andrea Zoppi <texzk@email.it>
1 parent 83f6115 commit 3b2e3a2

File tree

10 files changed

+17
-10
lines changed

10 files changed

+17
-10
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
1.0.2 (2025-06-09)
5+
------------------
6+
7+
* Added support for Python 3.13.
8+
* Added support for Python 3.14.
9+
10+
411
1.0.1 (2024-10-05)
512
------------------
613

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 2-Clause License
22

3-
Copyright (c) 2020-2024, Andrea Zoppi
3+
Copyright (c) 2020-2025, Andrea Zoppi
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def read_version():
3131
source_suffix = '.rst'
3232
master_doc = 'index'
3333
project = 'bytesparse'
34-
year = '2020-2024'
34+
year = '2020-2025'
3535
author = 'Andrea Zoppi'
3636
copyright = f'{year}, {author}'
3737
version = release = read_version()

src/bytesparse/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2024, Andrea Zoppi.
1+
# Copyright (c) 2020-2025, Andrea Zoppi.
22
# All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
@@ -112,7 +112,7 @@
112112
113113
"""
114114

115-
__version__ = '1.0.1'
115+
__version__ = '1.0.2'
116116

117117
from .inplace import Memory
118118
from .inplace import bytesparse

src/bytesparse/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2024, Andrea Zoppi.
1+
# Copyright (c) 2020-2025, Andrea Zoppi.
22
# All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without

src/bytesparse/inplace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2024, Andrea Zoppi.
1+
# Copyright (c) 2020-2025, Andrea Zoppi.
22
# All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without

src/bytesparse/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2024, Andrea Zoppi.
1+
# Copyright (c) 2020-2025, Andrea Zoppi.
22
# All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without

tests/_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2024, Andrea Zoppi.
1+
# Copyright (c) 2020-2025, Andrea Zoppi.
22
# All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without

tests/test_inplace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2024, Andrea Zoppi.
1+
# Copyright (c) 2020-2025, Andrea Zoppi.
22
# All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without

tests/test_io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2024, Andrea Zoppi.
1+
# Copyright (c) 2020-2025, Andrea Zoppi.
22
# All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)