Skip to content

Commit

Permalink
Release/0.6.1 (#206)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
cbkerr and pre-commit-ci[bot] authored Nov 10, 2023
1 parent ac59c64 commit b81aa1c
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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}.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
10 changes: 10 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ The **signac-dashboard** package follows `semantic versioning <https://semver.or
Version 0.6
===========

[0.6.1] -- 2023-11-10
---------------------

Added
+++++

- Support for flask 3 and werkzeug 3 (#204).
- Tested Python 3.12 support (#205).


[0.6.0] -- 2023-08-30
---------------------

Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
author = "Bradley D. Dice, Carl S. Adorf, Sharon C. Glotzer"

# The short X.Y version
version = "0.6.0"
version = "0.6.1"
# The full version, including alpha/beta/rc tags
release = "0.6.0"
release = "0.6.1"


# -- General configuration ---------------------------------------------------
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires = ["setuptools>=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.
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion signac_dashboard/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit b81aa1c

Please sign in to comment.