diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 3a632141df61c8480101323875b2a291c3b98dd2..015542e96f2fe31963101042771da4128c349956 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,19 @@
 Change log
 ----------
 
+1.2 (2020-02-17)
+~~~~~~~~~~~~~~~~
+
+- Change system:
+    - Change RHS for energy coupling consistency
+    - Add delta term
+    - Add body force
+    - Add div(u) coupling to energy balance (also change RHS for elimination)
+    - Rename deltas and chi_tilde
+- Add body froce driven channel flow
+- Add P2P1P1P2P1 R13 validation case
+- Revert to MUMPS solver
+
 1.1 (2019-12-15)
 ~~~~~~~~~~~~~~~~
 
diff --git a/README.rst b/README.rst
index fb930d6cd143279281b8f4c1c9ccbdb6382e0348..00663bba48c8c0bb1f4d9216d5502dc16d4f6752 100644
--- a/README.rst
+++ b/README.rst
@@ -4,15 +4,13 @@
 
 .. inclusion-marker
 
-fenicsR13
+fenicsR13: A Tensorial Mixed Finite Element Solver for the Linear R13 Equations Using the FEniCS Computing Platform
 ================================================================================
 
 |pipeline| |coverage| |version| |website|
 
 ``#extendedGasDynamics`` ``#using`` ``#FEniCS``
 
-  Repository for FEM simulations of non-equilibrium gas dynamics based on the Regularized 13-Moment-Equations for rarefied and micro-flows in 2D.
-
 Installation
 --------------------------------------------------------------------------------
 
@@ -261,6 +259,7 @@ Create new version tag
 2. Adapt version in `conf.py` for docs and `setup.py` for package
 3. Change badge in ``README.rst``
 4. Change version in program information printing
+5. Build new Docker container
 
 Gitlab CI Setup
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -368,10 +367,6 @@ Contact
     | Lehrstuhl für Mathematik (MathCCES)
     | RWTH Aachen University
     | mt@mathcces.rwth-aachen.de
-:Context:
-    | Masterthesis Computational Engineering Science
-    | RWTH Aachen University
-    | *Simulation of Non-Equilibrium Gas Flows Using the FEniCS Computing Platform*
 
 .. |pipeline| image:: https://git.rwth-aachen.de/lamboo/fenicsR13/badges/master/pipeline.svg
     :target: https://git.rwth-aachen.de/lamboo/fenicsR13/commits/master
@@ -381,7 +376,7 @@ Contact
     :target: https://git.rwth-aachen.de/lamboo/fenicsR13/pipelines
     :alt: Test coverage
 
-.. |version| image:: https://img.shields.io/badge/version-v1.1-blue.svg
+.. |version| image:: https://img.shields.io/badge/version-1.2-blue.svg
     :target: https://git.rwth-aachen.de/lamBOO/fenicsR13/-/tags
     :alt: Documentation Website
 
diff --git a/docs/conf.py b/docs/conf.py
index 9fd2728aaf8d37acc2869c893a13a276ed66625b..e371bbc03800ac1621a4208b41beb536b7fc158b 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -21,11 +21,11 @@ sys.path.insert(0, os.path.abspath('../examples'))
 # -- Project information -----------------------------------------------------
 
 project = 'fenicsR13'
-copyright = '2019'
+copyright = '2020'
 author = 'Lambert Theisen'
 
 # The full version, including alpha/beta/rc tags
-release = '1.1'
+release = '1.2'
 
 # -- General configuration ---------------------------------------------------
 
diff --git a/fenicsR13/fenicsR13.py b/fenicsR13/fenicsR13.py
index ead7d727c7c640538cf6932907c9ff40f252875a..9e2f0a39f6e40e1aa2030b1642f26e676a4e2890 100755
--- a/fenicsR13/fenicsR13.py
+++ b/fenicsR13/fenicsR13.py
@@ -28,7 +28,7 @@ def print_information():
 
     .. code-block:: text
 
-        -> Version: v1.1
+        -> Version: 1.2
         -> Contact: Lambert Theisen <lambert.theisen@rwth-aachen.de>
         -> Contact: Manuel Torrilhon <mt@mathcces.rwth-aachen.de>
         -> Repository: <https://git.rwth-aachen.de/lamBOO/fenicsR13>
@@ -40,7 +40,7 @@ def print_information():
         |_|  \___|_| |_|_|\___|___/_| \_\_|____/
 
     """
-    print(r"""-> Version: v1.1
+    print(r"""-> Version: 1.2
 -> Contact: Lambert Theisen <lambert.theisen@rwth-aachen.de>
 -> Contact: Manuel Torrilhon <mt@mathcces.rwth-aachen.de>
 -> Repository: <https://git.rwth-aachen.de/lamBOO/fenicsR13>
diff --git a/setup.py b/setup.py
index 5f67cec5099b780c7ecbc73f613aeadee1155003..4fdd2cdd4cfdbda455d37eb6e7e820c58037ac2b 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ def readme(): # pylint: disable=missing-function-docstring
 
 setup(
     name="fenicsR13",
-    version="1.1",
+    version="1.2",
     description="FEniCS (FEM) Solver for Non.-Eq.-Gases Based on R13 Equations",
     long_description=readme(),
     url="https://git.rwth-aachen.de/lamBOO/fenicsR13",