TNO Intern

Commit 3941bbec authored by Arjo Segers's avatar Arjo Segers
Browse files

Tagged v2.4 .

parent 552a2068
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.3'
release = 'v2.4'


# -- General configuration ---------------------------------------------------
+9 −5
Original line number Diff line number Diff line
@@ -83,6 +83,10 @@ A summary of the versions and changes.
  | Convert selected orbit files based on selection query.
  | *(2023-08)*

* | *v2.4*
  | Reformatted using 'black'.
  | *(2023-08)*


To be included
==============
@@ -125,7 +129,7 @@ A wishlist of developments.
How to create a version tag
===========================

Example for tagging version "2.2".
Example for tag "v2.4".

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

@@ -133,16 +137,16 @@ Example for tagging version "2.2".
   `doc/source/conf.py <../../source/conf.py>`_::

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

      git commit -m 'Defined version 2.2 .' doc/source/history.rst doc/source/conf.py
      git commit -m 'Tagged v2.4 .' 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
      git tag -a 'v2.4' -m 'Tagged v2.4'
      git push origin v2.4