Skip to content

Commit 366fa9d

Browse files
committed
bump patch level, update release notes, clean up
1 parent 5396da9 commit 366fa9d

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

CMakeModules/CPackSettings.cmake

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ set(CPACK_SOURCE_IGNORE_FILES
3535
"/html/"
3636
"/bindings/"
3737
"TODO"
38-
"exposed_decl.pypp.txt"
3938
"ompl.pc$"
40-
"installPyPlusPlus.bat$"
41-
"installPyPlusPlus.sh$"
4239
"create_symlinks.sh$"
4340
"uninstall_symlinks.sh$"
4441
"config.h$"

CMakeModules/OMPLVersion.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# set the version in a way CMake can use
22
set(OMPL_MAJOR_VERSION 1)
33
set(OMPL_MINOR_VERSION 2)
4-
set(OMPL_PATCH_VERSION 0)
4+
set(OMPL_PATCH_VERSION 1)
55
set(OMPL_VERSION "${OMPL_MAJOR_VERSION}.${OMPL_MINOR_VERSION}.${OMPL_PATCH_VERSION}")
66

77
# increment this when we have ABI changes

doc/markdown/releaseNotes.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Release Notes
22

33

4+
# OMPL 1.2.1 (July 1, 2016)
5+
6+
- New simplified installation instructions. There is now also a [installation script](http://ompl.kavrakilab.org/install-ompl-ubuntu.sh) that will download and install OMPL and all its dependencies on Ubuntu 14.04, 15.10, and 16.04.
7+
- Fixed python bindings for gcc5. Python bindings still take a [very long time](https://github.com/gccxml/pygccxml/issues/56) to generate.
8+
- Misc. small bug fixes.
9+
10+
411
# OMPL 1.2.0 (June 20, 2016)
512

613
- C++11 is now **required**. A lot of Boost usage in older versions of OMPL has been replaced with C++11 STL equivalents.

install-ompl-ubuntu.sh.in

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,21 @@ install_common_dependencies()
1212
# On Ubuntu 14.04 we need to add a PPA to get a recent compiler (g++-4.8 is too old).
1313
# We also need to specify a boost version, since the default Boost is too old.
1414
if [ -z $TRUSTY ]; then
15-
sudo apt-get install -y cmake libboost-all-dev libeigen3-dev libode-dev
15+
sudo apt-get -y install cmake libboost-all-dev libeigen3-dev libode-dev
1616
else
17+
# needed for the add-apt-repository command, which was not part of early Trusty releases
18+
sudo apt-get -y install software-properties-common
1719
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
1820
sudo apt-get -y update
19-
sudo apt-get install -y g++-5 cmake libboost1.55-all-dev libeigen3-dev libode-dev
21+
sudo apt-get -y install g++-5 cmake libboost1.55-all-dev libeigen3-dev libode-dev
2022
export CXX=g++-5
2123
fi
2224
export MAKEFLAGS="-j `nproc`"
2325
}
2426

2527
install_python_binding_dependencies()
2628
{
27-
sudo apt-get install -y python-dev python-pip
29+
sudo apt-get -y install python-dev python-pip
2830
# install additional python dependencies via pip
2931
sudo -H pip -v install pygccxml https://bitbucket.org/ompl/pyplusplus/get/1.6.tar.gz
3032
# install castxml
@@ -40,11 +42,11 @@ install_app_dependencies()
4042
{
4143
# We prefer PyQt5, but PyQt4 also still works.
4244
if [ -z $TRUSTY ]; then
43-
sudo apt-get install -y python-pyqt5.qtopengl
45+
sudo apt-get -y install python-pyqt5.qtopengl
4446
else
45-
sudo apt-get install -y python-qt4-dev python-qt4-gl
47+
sudo apt-get -y install python-qt4-dev python-qt4-gl
4648
fi
47-
sudo apt-get install -y freeglut3-dev libassimp-dev python-opengl python-flask python-celery
49+
sudo apt-get -y install freeglut3-dev libassimp-dev python-opengl python-flask python-celery
4850
# install additional python dependencies via pip
4951
sudo -H pip -v install PyOpenGL-accelerate
5052
# install libccd

0 commit comments

Comments
 (0)