Skip to content

Commit

Permalink
Bump version number to 0.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
peterspackman committed Jan 7, 2025
1 parent d0febab commit 686f333
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16.0 FATAL_ERROR)

set(PROJECT_VERSION_MAJOR "0")
set(PROJECT_VERSION_MINOR "6")
set(PROJECT_VERSION_PATCH "7")
set(PROJECT_VERSION_PATCH "8")

project(occ
VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "occpy"
version = "0.6.7"
version = "0.6.8"
description = "A library for quantum chemistry"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/occpy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,6 @@ NB_MODULE(_occpy, m) {
#ifdef VERSION_INFO
m.attr("__version__") = MACRO_STRINGIFY(VERSION_INFO);
#else
m.attr("__version__") = "0.6.7";
m.attr("__version__") = "0.6.8";
#endif
}

0 comments on commit 686f333

Please sign in to comment.