Skip to content

Commit

Permalink
Update to v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zfergus committed Aug 19, 2023
1 parent 46e1780 commit 2aa24e1
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ if(IPC_TOOLKIT_WITH_CCACHE AND CCACHE_PROGRAM)
endforeach()
endif()


################################################################################
# CMake Policies
################################################################################
Expand All @@ -60,7 +59,7 @@ endif()
project(IPCToolkit
DESCRIPTION "A set of reusable functions to integrate IPC into an existing simulation."
LANGUAGES CXX
VERSION "1.1.0")
VERSION "1.1.1")

option(IPC_TOOLKIT_BUILD_TESTS "Build unit-tests" ${IPC_TOOLKIT_TOPLEVEL_PROJECT})
option(IPC_TOOLKIT_BUILD_PYTHON "Build Python bindings" OFF)
Expand Down
7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## v1.1.1 (Aug 18, 2023)

* Logo by @zfergus in [#52](https://github.com/ipc-sim/ipc-toolkit/pull/52)
* Fix vertex-vertex `==` and `<` functions to be order independent
* This allows vertex-vertex constraints merge correctly
* Update Tight Inclusion CCD

## v1.1.0 (Jul 25, 2023)

Large refactoring to make the code more object-oriented rather than passing objects to functions. Other changes include the friction potential now being a function of velocity, bug fixes, and a new tutorial.
Expand Down
7 changes: 5 additions & 2 deletions docs/source/_static/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
"title": "main",
"aliases": ["latest", "head"]
}, {
"version": "https://ipc-sim.github.io/ipc-toolkit/v1.1.0",
"title": "v1.1.0",
"version": "https://ipc-sim.github.io/ipc-toolkit/v1.1.1",
"title": "v1.1.1",
"aliases": ["stable"]
}, {
"version": "https://ipc-sim.github.io/ipc-toolkit/v1.1.0",
"title": "v1.1.0"
}, {
"version": "https://ipc-sim.github.io/ipc-toolkit/v1.0.0",
"title": "v1.0.0"
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.1.0"
version = "1.1.1"

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

Expand Down
2 changes: 1 addition & 1 deletion docs/source/cpp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ where :cmake:`IPC_TOOLKIT_GIT_TAG` is set to the version of the toolkit you want
where :cmake:`PROJECT_NAME` is the name of your library/binary.

.. tip::
If your :cmake:`IPC_TOOLKIT_GIT_TAG` is a tag (e.g. ``v1.1.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`.
If your :cmake:`IPC_TOOLKIT_GIT_TAG` is a tag (e.g. ``v1.1.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`.

Dependencies
------------
Expand Down

0 comments on commit 2aa24e1

Please sign in to comment.