diff --git a/CMakeLists.txt b/CMakeLists.txt index 177a9a426..c42d2b304 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/docs/source/conf.py b/docs/source/conf.py index 65b1cd207..c796f60dc 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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 --------------------------------------------------- diff --git a/docs/source/cpp.md b/docs/source/cpp.md index 862a9add1..4bdd62fdf 100644 --- a/docs/source/cpp.md +++ b/docs/source/cpp.md @@ -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``. ``` diff --git a/pyproject.toml b/pyproject.toml index 2e730e7f1..380a3fa03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,13 +9,11 @@ build-backend = "setuptools.build_meta" [project] name = "ipctk" -version = "1.0.1" -authors = [ - { name="Zachary Ferguson", email="zfergus@nyu.edu" }, -] +version = "1.1.0" +authors = [{ name = "Zachary Ferguson", email = "zfergus@nyu.edu" }] 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", @@ -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/" @@ -45,4 +34,3 @@ keywords = [ [tools.cibuildwheel] build-frontend = "build" -