From 8fcd285fb1b1d29ac4a7fc647e3056bba1fb6eac Mon Sep 17 00:00:00 2001
From: kienle <kienle@passcal.nmt.edu>
Date: Fri, 10 Jan 2025 15:32:45 -0700
Subject: [PATCH] Update version

---
 HISTORY.rst                        | 5 +++++
 conda.recipe/meta.yaml             | 2 +-
 setup.py                           | 2 +-
 sohstationviewer/CHANGELOG.rst     | 5 +++++
 sohstationviewer/conf/constants.py | 4 ++--
 5 files changed, 14 insertions(+), 4 deletions(-)

diff --git a/HISTORY.rst b/HISTORY.rst
index 53b6392c..34c1b70f 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -93,3 +93,8 @@ to read.
 2024.4.0.1
 --------
 * Fix bug caused by PySide6 version 6.8
+
+2025.1.0.0
+--------
+* Add support for Q8 dataloggers
+* Change how the data type of a dataset is detected
diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml
index 1d67f3b4..ee34f63f 100644
--- a/conda.recipe/meta.yaml
+++ b/conda.recipe/meta.yaml
@@ -1,6 +1,6 @@
 package:
   name: sohviewer
-  version: 2024.4.0.1
+  version: 2025.1.0.0
 
 source:
   path: ../
diff --git a/setup.py b/setup.py
index a390cfa3..ebcae8b7 100644
--- a/setup.py
+++ b/setup.py
@@ -51,6 +51,6 @@ setup(
     name='sohviewer',
     packages=find_packages(include=['sohstationviewer*']),
     url='https://git.passcal.nmt.edu/software_public/passoft/sohstationviewer',
-    version='2024.4.0.1',
+    version='2025.1.0.0',
     zip_safe=False,
 )
diff --git a/sohstationviewer/CHANGELOG.rst b/sohstationviewer/CHANGELOG.rst
index 53b6392c..34c1b70f 100644
--- a/sohstationviewer/CHANGELOG.rst
+++ b/sohstationviewer/CHANGELOG.rst
@@ -93,3 +93,8 @@ to read.
 2024.4.0.1
 --------
 * Fix bug caused by PySide6 version 6.8
+
+2025.1.0.0
+--------
+* Add support for Q8 dataloggers
+* Change how the data type of a dataset is detected
diff --git a/sohstationviewer/conf/constants.py b/sohstationviewer/conf/constants.py
index 19d8445c..51b46c0d 100644
--- a/sohstationviewer/conf/constants.py
+++ b/sohstationviewer/conf/constants.py
@@ -5,8 +5,8 @@ from typing import Literal
 ROOT_PATH = Path(__file__).resolve().parent.parent
 
 # The current version of SOHStationViewer
-SOFTWARE_VERSION = '2024.4.0.1'
-BUILD_TIME = "December 12, 2024"
+SOFTWARE_VERSION = '2025.1.0.0'
+BUILD_TIME = "January 10, 2025"
 
 # waveform pattern
 WF_1ST = 'A-HLM-V'
-- 
GitLab