Skip to content

Commit 667b652

Browse files
committed
Update version to 1.2.1
1 parent f1655c0 commit 667b652

File tree

6 files changed

+17
-6
lines changed

6 files changed

+17
-6
lines changed

.github/workflows/pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
with:
8787
user: __token__
8888
# To test:
89-
# password: ${{ secrets.TEST_PYPI_API_TOKEN }}
90-
# repository-url: https://test.pypi.org/legacy/
89+
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
90+
repository-url: https://test.pypi.org/legacy/
9191
# To release:
92-
password: ${{ secrets.PYPI_API_TOKEN }}
92+
# password: ${{ secrets.PYPI_API_TOKEN }}

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ endif()
5959
project(IPCToolkit
6060
DESCRIPTION "A set of reusable functions to integrate IPC into an existing simulation."
6161
LANGUAGES CXX
62-
VERSION "1.2.0")
62+
VERSION "1.2.1")
6363

6464
option(IPC_TOOLKIT_BUILD_TESTS "Build unit-tests" ${IPC_TOOLKIT_TOPLEVEL_PROJECT})
6565
option(IPC_TOOLKIT_BUILD_PYTHON "Build Python bindings" OFF)

docs/source/_static/versions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
"version": "https://ipctk.xyz",
33
"title": "main",
44
"aliases": ["latest", "head"]
5+
}, {
6+
"version": "https://ipctk.xyz/v1.2.1",
7+
"title": "v1.2.1",
8+
"aliases": ["stable"]
59
}, {
610
"version": "https://ipctk.xyz/v1.2.0",
711
"title": "v1.2.0",

docs/source/changelog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ Changelog
66
.. role:: cmake(code)
77
:language: cmake
88

9+
v1.2.1 (Jul 12, 2024)
10+
---------------------
11+
12+
*Bug fixes |:bug:|:*
13+
14+
- Update Pybind11 to support Numpy 2.0. Fixes segmentation fault as described in #102.
15+
916
v1.2.0 (Dec 11, 2023)
1017
---------------------
1118

docs/source/cpp.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ C++
2424
:end-before: <!--- BEGIN C++ README 2 --->
2525

2626
.. tip::
27-
If your :cmake:`IPC_TOOLKIT_GIT_TAG` is a tag (e.g. ``v1.2.0``), then you can use the :cmake:`FetchContent_Declare` argument :cmake:`GIT_SHALLOW TRUE` to download only a single commit. Otherwise, you should use the default :cmake:`GIT_SHALLOW FALSE`.
27+
If your :cmake:`IPC_TOOLKIT_GIT_TAG` is a tag (e.g. ``v1.2.1``), then you can use the :cmake:`FetchContent_Declare` argument :cmake:`GIT_SHALLOW TRUE` to download only a single commit. Otherwise, you should use the default :cmake:`GIT_SHALLOW FALSE`.
2828

2929
.. include:: ../../README.md
3030
:parser: myst_parser.sphinx_

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99

1010
[project]
1111
name = "ipctk"
12-
version = "1.2.0"
12+
version = "1.2.1"
1313
authors = [{ name = "Zachary Ferguson", email = "[email protected]" }]
1414
description = "A set of reusable functions to integrate Incremental Potential Contact (IPC) into a simulation."
1515
readme = "docs/PYPI_README.md"

0 commit comments

Comments
 (0)