Skip to content

Commit

Permalink
updated copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
prs513rosewood committed Mar 7, 2024
1 parent 342084d commit 2635019
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_edge_cases.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_parallel.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_vtk_files.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion uvw/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion uvw/data_array.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion uvw/dropin/hl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion uvw/parallel.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion uvw/unstructured.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion uvw/vtk_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion uvw/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2635019

Please sign in to comment.