Skip to content

Commit

Permalink
Bump v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Ferguson committed Jul 25, 2023
1 parent bc4e9e4 commit 35b827c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 20 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ endif()
project(IPCToolkit
DESCRIPTION "A set of reusable functions to integrate IPC into an existing simulation."
LANGUAGES CXX
VERSION "1.0.1")
VERSION "1.1.0")

option(IPC_TOOLKIT_BUILD_TESTS "Build unit-tests" ${IPC_TOOLKIT_TOPLEVEL_PROJECT})
option(IPC_TOOLKIT_BUILD_PYTHON "Build Python bindings" OFF)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
project = "IPC Toolkit"
copyright = '2020-2023, IPC-Sim Organization; MIT License'
author = "Zachary Ferguson"
version = "1.0.0"
version = "1.1.0"

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/source/cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ where `PROJECT_NAME` is the name of your library/binary.

```{eval-rst}
.. tip::
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.
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.
Otherwise, you should use the default ``GIT_SHALLOW FALSE``.
```

Expand Down
22 changes: 5 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@ build-backend = "setuptools.build_meta"

[project]
name = "ipctk"
version = "1.0.1"
authors = [
{ name="Zachary Ferguson", email="[email protected]" },
]
version = "1.1.0"
authors = [{ name = "Zachary Ferguson", email = "[email protected]" }]
description = "A set of reusable functions to integrate Incremental Potential Contact (IPC) into a simulation."
readme = "docs/PYPI_README.md"
license = { file="LICENSE" }
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: C++",
"Programming Language :: Python :: 3",
Expand All @@ -26,17 +24,8 @@ classifiers = [
"Intended Audience :: Science/Research",
]
requires-python = ">=3.6"
dependencies = [
"numpy",
"scipy",
]
keywords = [
"IPC",
"simulation",
"physics",
"science",
"reserch",
]
dependencies = ["numpy", "scipy"]
keywords = ["IPC", "simulation", "physics", "science", "reserch"]

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

[tools.cibuildwheel]
build-frontend = "build"

0 comments on commit 35b827c

Please sign in to comment.