From 68d5e23717f39044f98ff82ba234a28289ff527f Mon Sep 17 00:00:00 2001 From: Rafael Pastrana Date: Wed, 30 Oct 2024 15:24:18 -0400 Subject: [PATCH] Bump version to 0.8.6 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 2 +- docs/conf.py | 2 +- setup.py | 2 +- src/jax_fdm/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 182a491..00b7ac8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.5 +current_version = 0.8.6 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 65c87cf..28e726a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [0.8.6] 2024-10-30 ### Added diff --git a/docs/conf.py b/docs/conf.py index c51fc2d..c0458b0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,7 +19,7 @@ project = "jax_fdm" copyright = "Rafael Pastrana" author = "Rafael Pastrana" -release = "0.8.5" +release = "0.8.6" version = ".".join(release.split(".")[0:2]) master_doc = "index" diff --git a/setup.py b/setup.py index c7c3ccb..704d204 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def read(*names, **kwargs): setup( name="jax_fdm", - version="0.8.5", + version="0.8.6", description="Auto-differentiable and hardware-accelerated force density method", long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/jax_fdm/__init__.py b/src/jax_fdm/__init__.py index a2c5a8e..e2b707b 100644 --- a/src/jax_fdm/__init__.py +++ b/src/jax_fdm/__init__.py @@ -24,7 +24,7 @@ __copyright__ = "Rafael Pastrana" __license__ = "MIT License" __email__ = "arpastrana@princeton.edu" -__version__ = "0.8.5" +__version__ = "0.8.6" HERE = os.path.dirname(__file__)