From a0739e5c565fd88109467eb9b7164c03af75a8d6 Mon Sep 17 00:00:00 2001
From: Maeva Pourpoint <maeva@passcal.nmt.edu>
Date: Tue, 11 Jan 2022 13:50:18 -0700
Subject: [PATCH] New versioning scheme to meet schematic versioning convention

---
 conda.recipe/meta.yaml | 2 +-
 fixhdr/__init__.py     | 2 +-
 fixhdr/fixhdr.py       | 9 ++++++++-
 setup.py               | 2 +-
 4 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml
index aa37f81..7b3c24e 100644
--- a/conda.recipe/meta.yaml
+++ b/conda.recipe/meta.yaml
@@ -1,6 +1,6 @@
 package:
   name: fixhdr
-  version: 2020.212
+  version: 2022.1.0.0
 
 source:
   path: ../
diff --git a/fixhdr/__init__.py b/fixhdr/__init__.py
index cf89852..639e390 100644
--- a/fixhdr/__init__.py
+++ b/fixhdr/__init__.py
@@ -4,4 +4,4 @@
 
 __author__ = """IRIS PASSCAL"""
 __email__ = 'software-support@passcal.nmt.edu'
-__version__ = '2020.212'
+__version__ = '2022.1.0.0'
diff --git a/fixhdr/fixhdr.py b/fixhdr/fixhdr.py
index 4053074..0e7f268 100755
--- a/fixhdr/fixhdr.py
+++ b/fixhdr/fixhdr.py
@@ -278,6 +278,13 @@
 # Directory cleanup (remove unused files introduced by Cookiecutter).
 # Packaged with conda.
 ################################################################
+#
+# modification
+# version: 2022.1.0.0
+# author: Maeva Pourpoint
+#
+# New versioning scheme
+################################################################
 
 import os
 import Pmw
@@ -292,7 +299,7 @@ from tkinter.filedialog import *
 
 from fixhdr.LibTrace import *
 
-VERSION = "2020.212"
+VERSION = "2022.1.0.0"
 
 SPACE = " "
 DATALOC = ""
diff --git a/setup.py b/setup.py
index 5f24116..e34169c 100644
--- a/setup.py
+++ b/setup.py
@@ -45,6 +45,6 @@ setup(
     name='fixhdr',
     packages=find_packages(include=['fixhdr']),
     url='https://git.passcal.nmt.edu/passoft/fixhdr',
-    version='2020.212',
+    version='2022.1.0.0',
     zip_safe=False,
 )
-- 
GitLab