Skip to content

Commit 2aa24e1

Browse files
committed
Update to v1.1.1
1 parent 46e1780 commit 2aa24e1

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

CMakeLists.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ if(IPC_TOOLKIT_WITH_CCACHE AND CCACHE_PROGRAM)
4444
endforeach()
4545
endif()
4646

47-
4847
################################################################################
4948
# CMake Policies
5049
################################################################################
@@ -60,7 +59,7 @@ endif()
6059
project(IPCToolkit
6160
DESCRIPTION "A set of reusable functions to integrate IPC into an existing simulation."
6261
LANGUAGES CXX
63-
VERSION "1.1.0")
62+
VERSION "1.1.1")
6463

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

docs/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

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

5+
## v1.1.1 (Aug 18, 2023)
6+
7+
* Logo by @zfergus in [#52](https://github.com/ipc-sim/ipc-toolkit/pull/52)
8+
* Fix vertex-vertex `==` and `<` functions to be order independent
9+
* This allows vertex-vertex constraints merge correctly
10+
* Update Tight Inclusion CCD
11+
512
## v1.1.0 (Jul 25, 2023)
613

714
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.

docs/source/_static/versions.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
"title": "main",
44
"aliases": ["latest", "head"]
55
}, {
6-
"version": "https://ipc-sim.github.io/ipc-toolkit/v1.1.0",
7-
"title": "v1.1.0",
6+
"version": "https://ipc-sim.github.io/ipc-toolkit/v1.1.1",
7+
"title": "v1.1.1",
88
"aliases": ["stable"]
9+
}, {
10+
"version": "https://ipc-sim.github.io/ipc-toolkit/v1.1.0",
11+
"title": "v1.1.0"
912
}, {
1013
"version": "https://ipc-sim.github.io/ipc-toolkit/v1.0.0",
1114
"title": "v1.0.0"

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.1.0"
26+
version = "1.1.1"
2727

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

docs/source/cpp.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ where :cmake:`IPC_TOOLKIT_GIT_TAG` is set to the version of the toolkit you want
4545
where :cmake:`PROJECT_NAME` is the name of your library/binary.
4646

4747
.. tip::
48-
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`.
48+
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`.
4949

5050
Dependencies
5151
------------

0 commit comments

Comments
 (0)