From 27d1d0097d4a92393dc1b4752b1889424d8a9e0b Mon Sep 17 00:00:00 2001 From: Per A Brodtkorb Date: Fri, 4 Oct 2024 15:21:59 +0200 Subject: [PATCH] chore: Release 1.0.2 --- CHANGELOG.md | 14 ++++++++++++++ src/nvector/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15f794d..e1c3bb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.0.2] - 2024-10-04 + +### 📚 Documentation + +- Updated test badge in README.rst + +### ⚙️ Miscellaneous Tasks + +- Update release.yml and python-package.yml +- Send coverage report to codeclimate, codecov and SonarCloud +- Only send code coverage reports for changes made to the master branch +- Add sonar-project.properties and update link to test badge +- Update SonarCloud analysis in python-package.yml +- Update .readthedocs.yml ## [1.0.1] - 2024-10-03 diff --git a/src/nvector/__init__.py b/src/nvector/__init__.py index 8b16aff..c864a4b 100644 --- a/src/nvector/__init__.py +++ b/src/nvector/__init__.py @@ -5,7 +5,7 @@ from .objects import * # noqa from ._common import use_docstring -__version__ = "1.0.1" +__version__ = "1.0.2" _PACKAGE_NAME = __name__