diff --git a/CHANGELOG.md b/CHANGELOG.md index b3e84c3..0525dc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,12 @@ All notable changes to this project are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.5.0] - 2026-07-30 + +One change: the plain-string options now warn. Nothing else moves, and no result changes. + +This is the release 1.0.0 was waiting on. The policy is that anything removed in a major release +warns for at least one minor release first, so strings could not be removed until this shipped. ### Changed diff --git a/pyproject.toml b/pyproject.toml index 90ef970..0be3d2b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "python-som" -version = "0.4.0" +version = "0.5.0" authors = [{ name = "André Moreira Souza", email = "msouza.andre@hotmail.com" }] description = "Python implementation of the Self-Organizing Map" readme = "README.md" diff --git a/src/python_som/_version.py b/src/python_som/_version.py index 88d3b0c..967cd21 100644 --- a/src/python_som/_version.py +++ b/src/python_som/_version.py @@ -9,4 +9,4 @@ __all__ = ["__version__"] -__version__ = "0.4.0" +__version__ = "0.5.0" diff --git a/uv.lock b/uv.lock index 574fdbe..34bddfd 100644 --- a/uv.lock +++ b/uv.lock @@ -2559,7 +2559,7 @@ wheels = [ [[package]] name = "python-som" -version = "0.4.0" +version = "0.5.0" source = { editable = "." } dependencies = [ { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" },