diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1a01ffc..c88ba04 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,4 +16,4 @@ repos: rev: v0.5.5 hooks: - id: ruff - args: ["--fix", "--show-source"] + args: ["--fix", "--show-files"] diff --git a/CHANGELOG.md b/CHANGELOG.md index 3002826..8a2c366 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ All notable changes to this project will be documented in this file. +## [1.4.2] - 2025-07-07 + +### Contributors + +- [@quentinhaenn](Quentin Haenn) - Main developer and maintainer + +### Changed + +- Project governance changed : now the project is part of scikit-learn-contrib organization. +- Updated the README to reflect the new governance and organization. +- Updated the documentation to reflect the new governance and organization. +- Updated the test cases to ensure compatibility with the new governance and organization. +- Enhanced repository standards with codecov, binder examples and zenodo integration. +- New issue and PR templates +- Code of conduct and contributing guidelines added + ## [1.4.0] - 2025-06-19 ### Contributors diff --git a/src/radius_clustering/__init__.py b/src/radius_clustering/__init__.py index 7ce571b..50d76bb 100644 --- a/src/radius_clustering/__init__.py +++ b/src/radius_clustering/__init__.py @@ -2,4 +2,4 @@ from .radius_clustering import RadiusClustering __all__ = ["RadiusClustering"] -__version__ = "1.4.1" +__version__ = "1.4.2"