Get ready for 1.11.0RC1

Update version numbers.
Drop CERES_VERSION_ABI macro.

Change-Id: Ib3eadabb318afe206bb196a5221b195d26cbeaa0
diff --git a/CMakeLists.txt b/CMakeLists.txt
index af8f341..709983f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -82,11 +82,11 @@
 # For versions without ABI changes, bump the smallest number in CERES_VERSION,
 # but leave the CERES_ABI_VERSION unchanged.
 set(CERES_VERSION_MAJOR 1)
-set(CERES_VERSION_MINOR 10)
+set(CERES_VERSION_MINOR 11)
 set(CERES_VERSION_PATCH 0)
 set(CERES_VERSION
     ${CERES_VERSION_MAJOR}.${CERES_VERSION_MINOR}.${CERES_VERSION_PATCH})
-set(CERES_ABI_VERSION 1.10.0)
+set(CERES_ABI_VERSION 1.11.0)
 
 enable_testing()
 
diff --git a/docs/source/building.rst b/docs/source/building.rst
index fe3def3..e8bd80c 100644
--- a/docs/source/building.rst
+++ b/docs/source/building.rst
@@ -9,7 +9,7 @@
 .. _section-source:
 
 You can start with the `latest stable release
-<http://ceres-solver.org/ceres-solver-1.10.0.tar.gz>`_ . Or if you want
+<http://ceres-solver.org/ceres-solver-1.11.0.tar.gz>`_ . Or if you want
 the latest version, you can clone the git repository
 
 .. code-block:: bash
@@ -143,10 +143,10 @@
 
 .. code-block:: bash
 
- tar zxf ceres-solver-1.10.0.tar.gz
+ tar zxf ceres-solver-1.11.0.tar.gz
  mkdir ceres-bin
  cd ceres-bin
- cmake ../ceres-solver-1.10.0
+ cmake ../ceres-solver-1.11.0
  make -j3
  make test
  # Optionally install Ceres, it can also be exported using CMake which
@@ -160,7 +160,7 @@
 
 .. code-block:: bash
 
- bin/simple_bundle_adjuster ../ceres-solver-1.10.0/data/problem-16-22106-pre.txt
+ bin/simple_bundle_adjuster ../ceres-solver-1.11.0/data/problem-16-22106-pre.txt
 
 This runs Ceres for a maximum of 10 iterations using the
 ``DENSE_SCHUR`` linear solver. The output should look something like
@@ -177,7 +177,7 @@
        5  1.803399e+04    5.33e+01    1.48e+04   1.23e+01   9.99e-01  8.33e+05       1    1.45e-01    1.08e+00
        6  1.803390e+04    9.02e-02    6.35e+01   8.00e-01   1.00e+00  2.50e+06       1    1.50e-01    1.23e+00
 
-    Ceres Solver v1.10.0 Solve Report
+    Ceres Solver v1.11.0 Solve Report
     ----------------------------------
                                          Original                  Reduced
     Parameter blocks                        22122                    22122
@@ -278,10 +278,10 @@
 
 .. code-block:: bash
 
-   tar zxf ceres-solver-1.10.0.tar.gz
+   tar zxf ceres-solver-1.11.0.tar.gz
    mkdir ceres-bin
    cd ceres-bin
-   cmake ../ceres-solver-1.10.0
+   cmake ../ceres-solver-1.11.0
    make -j3
    make test
    # Optionally install Ceres, it can also be exported using CMake which
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 439d0c0..c9afebd 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -48,9 +48,9 @@
 # built documents.
 #
 # The short X.Y version.
-version = '1.10'
+version = '1.11'
 # The full version, including alpha/beta/rc tags.
-release = '1.10.0'
+release = '1.11.0'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff --git a/docs/source/index.rst b/docs/source/index.rst
index ea9b309..e4808f0 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -36,7 +36,7 @@
 ===============
 
 * Download the `latest stable release
-  <http://ceres-solver.org/ceres-solver-1.10.0.tar.gz>`_ or clone the
+  <http://ceres-solver.org/ceres-solver-1.11.0.tar.gz>`_ or clone the
   Git repository for the latest development version.
 
   .. code-block:: bash
diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst
index 87ad50e..8ee77c9 100644
--- a/docs/source/version_history.rst
+++ b/docs/source/version_history.rst
@@ -4,8 +4,8 @@
 Version History
 ===============
 
-HEAD
-====
+1.11.0
+======
 
 New Features
 ------------
diff --git a/include/ceres/version.h b/include/ceres/version.h
index bc7a1a8..66505a5 100644
--- a/include/ceres/version.h
+++ b/include/ceres/version.h
@@ -32,9 +32,8 @@
 #define CERES_PUBLIC_VERSION_H_
 
 #define CERES_VERSION_MAJOR 1
-#define CERES_VERSION_MINOR 10
+#define CERES_VERSION_MINOR 11
 #define CERES_VERSION_REVISION 0
-#define CERES_VERSION_ABI 1
 
 // Classic CPP stringifcation; the extra level of indirection allows the
 // preprocessor to expand the macro before being converted to a string.