diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 01f91ae5..ddfa51c9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.2.1 +current_version = 3.3.0 commit = False tag = False diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index d4b8510d..7a6944c0 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -64,7 +64,7 @@ body: label: GSD description: | What version of GSD are you using? - placeholder: 3.2.1 + placeholder: 3.3.0 validations: required: true - type: markdown diff --git a/.github/ISSUE_TEMPLATE/release.md b/.github/ISSUE_TEMPLATE/release.md index 1f7b0d87..351cf5c7 100644 --- a/.github/ISSUE_TEMPLATE/release.md +++ b/.github/ISSUE_TEMPLATE/release.md @@ -1,7 +1,7 @@ --- name: Release checklist about: '[for maintainer use]' -title: 'Release gsd 3.2.1' +title: 'Release gsd 3.3.0' labels: '' assignees: 'joaander' @@ -19,4 +19,3 @@ Release checklist: - [Output](https://gsd.readthedocs.io/en/latest/) - [ ] Tag and push. - [ ] Update conda-forge recipe. -- [ ] Update glotzerlab-software. diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f47c9112..3e2b3ae5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -10,8 +10,8 @@ Change Log 3.x --- -3.3.0 (not yet released) -^^^^^^^^^^^^^^^^^^^^^^^^ +3.3.0 (2024-05-29) +^^^^^^^^^^^^^^^^^^ *Added:* diff --git a/Doxyfile b/Doxyfile index a66392b5..e639bdc1 100644 --- a/Doxyfile +++ b/Doxyfile @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "GSD" -PROJECT_NUMBER = v3.2.1 +PROJECT_NUMBER = v3.3.0 PROJECT_BRIEF = "General simulation data" PROJECT_LOGO = OUTPUT_DIRECTORY = devdoc diff --git a/INSTALLING.rst b/INSTALLING.rst index 5d1bdff2..5a8ac455 100644 --- a/INSTALLING.rst +++ b/INSTALLING.rst @@ -16,22 +16,12 @@ Binaries Conda package ^^^^^^^^^^^^^ -**gsd** is available on conda-forge_ on the *linux-64*, *linux-aarch64*, *linux-ppc64le*, *osx-64*, -*osx-arm64* and *win-64* platforms. +**gsd** is available on conda-forge_ for the *linux-64*, *linux-aarch64*, *linux-ppc64le*, *osx-64*, +*osx-arm64* and *win-64* architectures. Install with: .. code-block:: bash - $ conda install gsd - -.. tip:: - - Use miniforge_, miniconda_, or any other *minimal* conda environment provider instead of the - full Anaconda distribution to avoid package conflicts with conda-forge_ packages. When using - miniconda_, follow the instructions provided in the conda-forge_ documentation to configure the - channel selection so that all packages are installed from the conda-forge_ channel. - -.. _miniforge: https://github.com/conda-forge/miniforge -.. _miniconda: http://conda.pydata.org/miniconda.html + $ mamba install gsd PyPI ^^^^ diff --git a/gsd/pygsd.py b/gsd/pygsd.py index 39b2baa6..f21c1177 100644 --- a/gsd/pygsd.py +++ b/gsd/pygsd.py @@ -36,7 +36,7 @@ import numpy -version = '3.2.1' +version = '3.3.0' logger = logging.getLogger('gsd.pygsd') diff --git a/gsd/version.py b/gsd/version.py index b10a51d8..fc807e07 100644 --- a/gsd/version.py +++ b/gsd/version.py @@ -9,7 +9,7 @@ not the file layer version it reads/writes. """ -version = '3.2.1' +version = '3.3.0' __all__ = [ 'version', diff --git a/pyproject.toml b/pyproject.toml index 1f0545e3..07c279cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] requires-python = ">=3.6" name = "gsd" -version = "3.2.1" +version = "3.3.0" description = "General simulation data file format." readme = "README.md" license = {text = "BSD-2-Clause"} @@ -25,7 +25,7 @@ gsd = "gsd.__main__:main" [project.urls] Homepage = "https://gsd.readthedocs.io" Documentation = "https://gsd.readthedocs.io" -Download = "https://github.com/glotzerlab/gsd/releases/download/v3.2.1/gsd-3.2.1.tar.gz" +Download = "https://github.com/glotzerlab/gsd/releases/download/v3.3.0/gsd-3.3.0.tar.gz" Source = "https://github.com/glotzerlab/gsd" Issues = "https://github.com/glotzerlab/gsd/issues"