TNO Intern

Commit da98165f authored by Arjo Segers's avatar Arjo Segers
Browse files

Defined version v2.2 .

parent 77fb75cf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ copyright = '2020-2023, Arjo Segers'
author = 'Arjo Segers'

# The full version, including alpha/beta/rc tags
release = 'v2.1'
release = 'v2.3'


# -- General configuration ---------------------------------------------------
+25 −0
Original line number Diff line number Diff line
@@ -121,3 +121,28 @@ A wishlist of developments.

* Storage of additional observation representation errors by assimilation system.


How to create a version tag
===========================

Example for tagging version "2.2".

1. Update the source file `doc/source/history.rst <../../source/history.rst>`_ of this chapter.

2. Change the release tag that will be shown in the documentation in the file
   `doc/source/conf.py <../../source/conf.py>`_::

      # The full version, including alpha/beta/rc tags
      release = "v2.2"
    
3. Commit these changes::

      git commit -m 'Defined version 2.2 .' doc/source/history.rst doc/source/conf.py

4. Tag and push the code to the git repository::

      git tag -a 'v2.2' -m 'Version 2.2'
      git push origin v2.2