From 8b3386ea315ad797aafc6c6e69a11f46e9971696 Mon Sep 17 00:00:00 2001 From: Kraina CI/CD <150701114+kraina-cicd@users.noreply.github.com> Date: Thu, 16 Nov 2023 12:08:50 +0100 Subject: [PATCH] chore: bump version 0.6.2 -> 0.6.3 (#8) --- .github/workflows/ci-dev.yml | 8 ++++++++ CHANGELOG.md | 6 +++++- CITATION.cff | 2 +- pyproject.toml | 4 ++-- srai/__init__.py | 2 +- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-dev.yml b/.github/workflows/ci-dev.yml index c652202f..fc072fc7 100644 --- a/.github/workflows/ci-dev.yml +++ b/.github/workflows/ci-dev.yml @@ -16,6 +16,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 + token: ${{ secrets.CICD_PAT_TOKEN }} + - name: Configure Git user + run: | + git config --local user.name "Kraina CI/CD" + git config --local user.email "cicd@kraina.ai" - name: Extract release notes id: extract-release-notes uses: ffurrer2/extract-release-notes@v1 @@ -27,6 +34,7 @@ jobs: - name: Release uses: softprops/action-gh-release@v1 with: + token: ${{ secrets.CICD_PAT_TOKEN }} tag_name: ${{ steps.extract-version.outputs._5 }} body: ${{ steps.extract-release-notes.outputs.release_notes }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ca9be26..4a1d67ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.3] - 2023-11-16 + ## [0.6.2] - 2023-11-16 ### Added @@ -224,7 +226,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Intersection Joiner - Geoparquet Loader -[Unreleased]: https://github.com/kraina-ai/srai-sandbox/compare/0.6.2...HEAD +[Unreleased]: https://github.com/kraina-ai/srai-sandbox/compare/0.6.3...HEAD + +[0.6.3]: https://github.com/kraina-ai/srai-sandbox/compare/0.6.2...0.6.3 [0.6.2]: https://github.com/kraina-ai/srai-sandbox/compare/0.6.1...0.6.2 diff --git a/CITATION.cff b/CITATION.cff index 9e0e3c0d..9b957687 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -14,7 +14,7 @@ authors: given-names: "Szymon" orcid: "https://orcid.org/0000-0002-2047-1649" title: "SRAI: Spatial Representations for Artificial Intelligence" -version: 0.6.2 +version: 0.6.3 date-released: 2022-11-23 url: "https://kraina-ai.github.io/srai" repository-code: "https://github.com/kraina-ai/srai" diff --git a/pyproject.toml b/pyproject.toml index 4ed4dc14..5558c35c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "srai" -version = "0.6.2" +version = "0.6.3" description = "A set of python modules for geospatial machine learning and data mining" authors = [ { name = "Piotr Gramacki", email = "pgramacki@kraina.ai" }, @@ -183,7 +183,7 @@ close-quotes-on-newline = true wrap-one-line = true [tool.bumpver] -current_version = "0.6.2" +current_version = "0.6.3" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "chore: bump version {old_version} -> {new_version}" commit = true diff --git a/srai/__init__.py b/srai/__init__.py index 624c1198..cae1838b 100644 --- a/srai/__init__.py +++ b/srai/__init__.py @@ -10,4 +10,4 @@ for complete documentation. """ -__version__ = "0.6.2" +__version__ = "0.6.3"