TNO Intern

Commit 141dca4f authored by Arjo Segers's avatar Arjo Segers
Browse files

Defined v2.13

parent 5aca6ba5
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -533,3 +533,9 @@ v2.12

Support running CSO within a virtual environment.


v2.13
-----

Updates for latest python versions.
Improved error checks.
+8 −5
Original line number Diff line number Diff line
@@ -119,6 +119,9 @@ A summary of the versions and changes.
* | *v2.12*
  | Support running in Python virtual environment.
  
* | *v2.13*
  | Minor updates to trap errors and support latest Python versions.


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

Example for tag "v2.12".
Example for tag "v2.13".

1. Update file formatting following conventions.

@@ -179,17 +182,17 @@ Example for tag "v2.12".

   c. Change the release tag that will also be imported to the documenation in the `pyproject.toml <../../../pyproject.toml>`_ file::

        release = "2.12"
        release = "2.13"
    
   d. Commit and push these changes::

       git commit -m 'Defined v2.12' .
       git commit -m 'Defined v2.13' .
       git push

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

      git tag -a 'v2.12' -m 'Tagged v2.12'
      git push origin v2.12
      git tag -a 'v2.13' -m 'Tagged v2.13'
      git push origin v2.13


  
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "cso"
version = "2.12"
version = "2.13"
authors = [
    { name = "Arjo Segers" },
    { name = "Lewis Blake" },