Skip to content

Commit 35b827c

Browse files
committed
Bump v1.1.0
1 parent bc4e9e4 commit 35b827c

File tree

4 files changed

+8
-20
lines changed

4 files changed

+8
-20
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ endif()
6060
project(IPCToolkit
6161
DESCRIPTION "A set of reusable functions to integrate IPC into an existing simulation."
6262
LANGUAGES CXX
63-
VERSION "1.0.1")
63+
VERSION "1.1.0")
6464

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

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
project = "IPC Toolkit"
2424
copyright = '2020-2023, IPC-Sim Organization; MIT License'
2525
author = "Zachary Ferguson"
26-
version = "1.0.0"
26+
version = "1.1.0"
2727

2828
# -- General configuration ---------------------------------------------------
2929

docs/source/cpp.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ where `PROJECT_NAME` is the name of your library/binary.
3333

3434
```{eval-rst}
3535
.. tip::
36-
If your ``IPC_TOOLKIT_GIT_TAG`` is a tag (e.g. ``v1.0.0``), then you can use the ``FetchContent_Declare`` argument ``GIT_SHALLOW TRUE`` to download only a single commit.
36+
If your ``IPC_TOOLKIT_GIT_TAG`` is a tag (e.g. ``v1.1.0``), then you can use the ``FetchContent_Declare`` argument ``GIT_SHALLOW TRUE`` to download only a single commit.
3737
Otherwise, you should use the default ``GIT_SHALLOW FALSE``.
3838
```
3939

pyproject.toml

+5-17
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@ build-backend = "setuptools.build_meta"
99

1010
[project]
1111
name = "ipctk"
12-
version = "1.0.1"
13-
authors = [
14-
{ name="Zachary Ferguson", email="[email protected]" },
15-
]
12+
version = "1.1.0"
13+
authors = [{ name = "Zachary Ferguson", email = "[email protected]" }]
1614
description = "A set of reusable functions to integrate Incremental Potential Contact (IPC) into a simulation."
1715
readme = "docs/PYPI_README.md"
18-
license = { file="LICENSE" }
16+
license = { file = "LICENSE" }
1917
classifiers = [
2018
"Programming Language :: C++",
2119
"Programming Language :: Python :: 3",
@@ -26,17 +24,8 @@ classifiers = [
2624
"Intended Audience :: Science/Research",
2725
]
2826
requires-python = ">=3.6"
29-
dependencies = [
30-
"numpy",
31-
"scipy",
32-
]
33-
keywords = [
34-
"IPC",
35-
"simulation",
36-
"physics",
37-
"science",
38-
"reserch",
39-
]
27+
dependencies = ["numpy", "scipy"]
28+
keywords = ["IPC", "simulation", "physics", "science", "reserch"]
4029

4130
[project.urls]
4231
"Homepage" = "https://ipc-sim.github.io/ipc-toolkit/"
@@ -45,4 +34,3 @@ keywords = [
4534

4635
[tools.cibuildwheel]
4736
build-frontend = "build"
48-

0 commit comments

Comments
 (0)