From d1466cac353a813ca06303fa58b396ee7fdccc6d Mon Sep 17 00:00:00 2001 From: Rafael Pastrana Date: Thu, 23 Nov 2023 10:37:51 -0500 Subject: [PATCH] Bump version to 0.8.0 --- .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 1cd2935..a531011 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.1 +current_version = 0.8.0 message = Bump version to {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b8a464..1c1e059 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.0] 2023-11-23 ### Added diff --git a/docs/conf.py b/docs/conf.py index b00567b..a388481 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,7 +19,7 @@ project = "jax_fdm" copyright = "Rafael Pastrana" author = "Rafael Pastrana" -release = "0.7.1" +release = "0.8.0" version = ".".join(release.split(".")[0:2]) master_doc = "index" diff --git a/setup.py b/setup.py index a17df00..29b9d93 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def read(*names, **kwargs): setup( name="jax_fdm", - version="0.7.1", + version="0.8.0", 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 d72c525..644bbfa 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.7.1" +__version__ = "0.8.0" HERE = os.path.dirname(__file__)