Update version history for 2.0.0RC2
Change-Id: I75b7515fbf9880bd8eaea6ecd5e72ce1ae4a3a86
diff --git a/docs/source/installation.rst b/docs/source/installation.rst
index 4012231..178b214 100644
--- a/docs/source/installation.rst
+++ b/docs/source/installation.rst
@@ -1111,7 +1111,7 @@
include(CMakeFindDependencyMacro)
find_dependency(Ceres)
-.. _section-migration
+.. _section-migration:
Migration
=========
diff --git a/docs/source/nnls_modeling.rst b/docs/source/nnls_modeling.rst
index 388ccfd..db482e4 100644
--- a/docs/source/nnls_modeling.rst
+++ b/docs/source/nnls_modeling.rst
@@ -372,9 +372,6 @@
NumericDiffOptions. Update DynamicNumericDiffOptions in a similar
manner.
- TODO(sameeragarwal): Check that Problem documentation for
- AddResidualBlock can deal with the variadic impl.
-
.. code-block:: c++
template <typename CostFunctor,
@@ -1734,9 +1731,7 @@
.. function:: ResidualBlockId Problem::AddResidualBlock(CostFunction* cost_function, LossFunction* loss_function, const vector<double*> parameter_blocks)
-.. function:: template <typename Ts...> ResidualBlockId
- Problem::AddResidualBlock(CostFunction* cost_function,
- LossFunction* loss_function, double* x0, Ts... xs)
+.. function:: template <typename Ts...> ResidualBlockId Problem::AddResidualBlock(CostFunction* cost_function, LossFunction* loss_function, double* x0, Ts... xs)
Add a residual block to the overall cost function. The cost
function carries with it information about the sizes of the
diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst
index 299e27b..72ae832 100644
--- a/docs/source/version_history.rst
+++ b/docs/source/version_history.rst
@@ -55,9 +55,17 @@
Bug Fixes & Minor Changes
-------------------------
+#. Use CMAKE_PREFIX_PATH to pass Homebrew install location (Alex Stewart)
+#. Add automatic differentiation support for ``Erf`` and ``Erfc``. (Morten Hennemose)
+#. Add a move constructor to ``AutoDiffCostFunction``, ``NumericDiffCostFunction``, ``DynamicAutoDiffCostFunction`` and ``DynamicNumericDiffCostFunction``. (Julian Kent & Sameer Agarwal)
+#. Fix potential for mismatched release/debug TBB libraries (Alex Stewart)
+#. Trust region minimizer now reports the gradient of the current state, rather than zero when it encounters an unsuccessful step (Sameer Agarwal & Alex Stewart)
+#. Unify symbol visibility configuration for all compilers (Taylor Braun-Jones)
+#. Fix the Bazel build so that it points GitLab instead of the old BitBucket repo for Eigen (Sameer Agarwal)
+#. Reformat source to be clang-format clean and add a script to format the repo using clang-format. (Nikolaus Demmel)
#. Various documentation improvements (Sameer Agarwal, Carl Dehlin,
Bayes Nie, Chris Choi, Frank, Kuang Fangjun, Dmitriy Korchemkin,
- huangqinjin, Patrik Huber)
+ huangqinjin, Patrik Huber, Nikolaus Demmel, Lorenzo Lamia)
#. Huge number of build system simplification & cleanups (Alex
Stewart, NeroBurner, Alastair Harrison, Linus Mårtensson, Nikolaus Demmel)
#. Intel TBB based threading removed (Mike Vitus)