From b81aa1cb80e60ba19998e3fe7d9540d76233bd47 Mon Sep 17 00:00:00 2001 From: Corwin Kerr Date: Fri, 10 Nov 2023 10:53:55 -0500 Subject: [PATCH] Release/0.6.1 (#206) * Update changelog * Bump up to version 0.6.1. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Add Python test to changelog * Add Python 3.12 to project metadata * Resolve deprecation warning in gh actions pypi publish * Update changelog date --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .bumpversion.cfg | 2 +- .github/workflows/publish-packages.yml | 2 +- changelog.txt | 10 ++++++++++ doc/conf.py | 4 ++-- pyproject.toml | 5 +++-- signac_dashboard/version.py | 2 +- 6 files changed, 18 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2abe281..9be39ed 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.6.1 commit = True tag = True message = Bump up to version {new_version}. diff --git a/.github/workflows/publish-packages.yml b/.github/workflows/publish-packages.yml index d78b6db..fe871c7 100644 --- a/.github/workflows/publish-packages.yml +++ b/.github/workflows/publish-packages.yml @@ -63,7 +63,7 @@ jobs: if: ${{ inputs.upload_to_test }} uses: pypa/gh-action-pypi-publish@release/v1 with: - repository_url: https://test.pypi.org/legacy/ + repository-url: https://test.pypi.org/legacy/ password: ${{ secrets.TEST_PYPI_API_TOKEN }} - name: Publish package to PyPI if: ${{ !inputs.upload_to_test }} diff --git a/changelog.txt b/changelog.txt index 9a44b9a..9a5d89c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -7,6 +7,16 @@ The **signac-dashboard** package follows `semantic versioning =64.0.0"] [project] name = "signac-dashboard" -version = "0.6.0" +version = "0.6.1" description = "Visualize data spaces in a web browser." readme = "README.md" # Supported versions are determined according to NEP 29. @@ -27,11 +27,12 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12" ] dependencies = [ "flask>=2.1.0", "flask-assets>=2.0.0", - "flask-login>=0.6.0", + "flask-login>=0.6.1", "flask-turbolinks", "jinja2>=3.0.0", "jsmin", diff --git a/signac_dashboard/version.py b/signac_dashboard/version.py index 5705305..3a3b22e 100644 --- a/signac_dashboard/version.py +++ b/signac_dashboard/version.py @@ -2,4 +2,4 @@ # All rights reserved. # This software is licensed under the BSD 3-Clause License. -__version__ = "0.6.0" +__version__ = "0.6.1"