Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.3.0] - 2025-06-25

- Numpy v2 support.
- Updated wheels
- Min Python version 3.9

## [0.2.8] - 2024-08-22

- Updated wheel builds
Expand Down
4 changes: 2 additions & 2 deletions pydelatin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""Top-level package for pydelatin."""

__author__ = """Kyle Barron"""
__email__ = 'kylebarron2@gmail.com'
__version__ = '0.2.7'
__email__ = "kylebarron2@gmail.com"
__version__ = "0.3.0"

from . import util
from .delatin import Delatin
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.7
current_version = 0.3.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name="pydelatin",
version="0.2.8",
version="0.3.0",
python_requires=">=3.9",
author="Kyle Barron",
author_email="kylebarron2@gmail.com",
Expand Down
Loading