From 2635019fdacbb5d3a259ac6e0217386ca2e83159 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Fr=C3=A9rot?= Date: Thu, 7 Mar 2024 10:29:02 +0100 Subject: [PATCH] updated copyright --- CHANGELOG.md | 6 ++++++ LICENSE.md | 2 +- tests/conftest.py | 2 +- tests/test_edge_cases.py | 2 +- tests/test_parallel.py | 2 +- tests/test_vtk_files.py | 2 +- uvw/__init__.py | 2 +- uvw/data_array.py | 2 +- uvw/dropin/hl.py | 2 +- uvw/parallel.py | 2 +- uvw/unstructured.py | 2 +- uvw/vtk_files.py | 2 +- uvw/writer.py | 2 +- 13 files changed, 18 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24e4395..afba068 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/). +## v0.7.0 -- 2024-03-07 + +### Added + +- Added support for rational Bézier cells (PR #8) + ## v0.6.0 -- 2023-12-04 ### Added diff --git a/LICENSE.md b/LICENSE.md index a54a199..a1ce04f 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ MIT License -Copyright © 2018-2023 Lucas Frérot +Copyright © 2018-2024 Lucas Frérot Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tests/conftest.py b/tests/conftest.py index 176dd41..ce632b3 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,4 +1,4 @@ -__copyright__ = "Copyright © 2018-2023 Lucas Frérot" +__copyright__ = "Copyright © 2018-2024 Lucas Frérot" __license__ = "SPDX-License-Identifier: MIT" import os diff --git a/tests/test_edge_cases.py b/tests/test_edge_cases.py index bc67992..b5680e7 100644 --- a/tests/test_edge_cases.py +++ b/tests/test_edge_cases.py @@ -1,4 +1,4 @@ -__copyright__ = "Copyright © 2018-2023 Lucas Frérot" +__copyright__ = "Copyright © 2018-2024 Lucas Frérot" __license__ = "SPDX-License-Identifier: MIT" import pytest diff --git a/tests/test_parallel.py b/tests/test_parallel.py index 86ad6d2..4c1ac2b 100644 --- a/tests/test_parallel.py +++ b/tests/test_parallel.py @@ -1,6 +1,6 @@ "Tests for parallel writers" -__copyright__ = "Copyright © 2018-2023 Lucas Frérot" +__copyright__ = "Copyright © 2018-2024 Lucas Frérot" __license__ = "SPDX-License-Identifier: MIT" import numpy as np diff --git a/tests/test_vtk_files.py b/tests/test_vtk_files.py index 171db60..b2e1732 100644 --- a/tests/test_vtk_files.py +++ b/tests/test_vtk_files.py @@ -1,4 +1,4 @@ -__copyright__ = "Copyright © 2018-2023 Lucas Frérot" +__copyright__ = "Copyright © 2018-2024 Lucas Frérot" __license__ = "SPDX-License-Identifier: MIT" import io diff --git a/uvw/__init__.py b/uvw/__init__.py index f859790..4406a8b 100644 --- a/uvw/__init__.py +++ b/uvw/__init__.py @@ -14,7 +14,7 @@ __author__ = "Lucas Frérot" __maintainer__ = __author__ -__copyright__ = "Copyright © 2018-2023 Lucas Frérot" +__copyright__ = "Copyright © 2018-2024 Lucas Frérot" __license__ = "SPDX-License-Identifier: MIT" # flake8: noqa diff --git a/uvw/data_array.py b/uvw/data_array.py index 22de03c..c04095c 100644 --- a/uvw/data_array.py +++ b/uvw/data_array.py @@ -1,6 +1,6 @@ """Defining class (`DataArray`) used to represent Numpy arrays in XML model.""" -__copyright__ = "Copyright © 2018-2023 Lucas Frérot" +__copyright__ = "Copyright © 2018-2024 Lucas Frérot" __license__ = "SPDX-License-Identifier: MIT" import functools diff --git a/uvw/dropin/hl.py b/uvw/dropin/hl.py index 6b9270d..4dfe852 100644 --- a/uvw/dropin/hl.py +++ b/uvw/dropin/hl.py @@ -46,7 +46,7 @@ """ -__copyright__ = "Copyright © 2018-2023 Lucas Frérot" +__copyright__ = "Copyright © 2018-2024 Lucas Frérot" __license__ = "SPDX-License-Identifier: MIT" from .. import vtk_files as vtk diff --git a/uvw/parallel.py b/uvw/parallel.py index 65d06c5..047f71c 100644 --- a/uvw/parallel.py +++ b/uvw/parallel.py @@ -1,6 +1,6 @@ """Module with MPI-empowered classes for parallel VTK file types.""" -__copyright__ = "Copyright © 2018-2023 Lucas Frérot" +__copyright__ = "Copyright © 2018-2024 Lucas Frérot" __license__ = "SPDX-License-Identifier: MIT" import functools diff --git a/uvw/unstructured.py b/uvw/unstructured.py index f078749..59d1cc0 100644 --- a/uvw/unstructured.py +++ b/uvw/unstructured.py @@ -1,6 +1,6 @@ """Module with class for cell types in vtkUnstructuredGrid.""" -__copyright__ = "Copyright © 2018-2023 Lucas Frérot" +__copyright__ = "Copyright © 2018-2024 Lucas Frérot" __license__ = "SPDX-License-Identifier: MIT" from enum import Enum, unique diff --git a/uvw/vtk_files.py b/uvw/vtk_files.py index a42af42..a04121a 100644 --- a/uvw/vtk_files.py +++ b/uvw/vtk_files.py @@ -16,7 +16,7 @@ """ -__copyright__ = "Copyright © 2018-2023 Lucas Frérot" +__copyright__ = "Copyright © 2018-2024 Lucas Frérot" __license__ = "SPDX-License-Identifier: MIT" import functools diff --git a/uvw/writer.py b/uvw/writer.py index b1d6982..9a5a5a8 100644 --- a/uvw/writer.py +++ b/uvw/writer.py @@ -5,7 +5,7 @@ description. """ -__copyright__ = "Copyright © 2018-2023 Lucas Frérot" +__copyright__ = "Copyright © 2018-2024 Lucas Frérot" __license__ = "SPDX-License-Identifier: MIT" from .data_array import DataArray