diff --git a/HISTORY.rst b/HISTORY.rst
index 64c97bd8ad5d0b410a3404a31cfe3abdf46b463b..35c612f109373c39eb973b766f48fe8ba93f421e 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -23,3 +23,12 @@ an Event channel
 input
 * Improved the ability to calculate the size of a data set
 * General bug fixes
+
+2024.2.1.0
+--------
+
+* Add reset button to database editors
+* Add ability to add new channels to the database from the plot
+* Add ability to edit a channel's plotting information from the plot
+* Change the size of the main information box
+* Bug fixes
diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml
index b5416120512321bbe16b8391948786170d65425f..c20983be94633dd450a8d98d4ad5889f065390e4 100644
--- a/conda.recipe/meta.yaml
+++ b/conda.recipe/meta.yaml
@@ -1,6 +1,6 @@
 package:
   name: sohviewer
-  version: 2024.2.0.0
+  version: 2024.2.1.0
 
 source:
   path: ../
diff --git a/setup.py b/setup.py
index bed3d92929408efa100d1eea72769089d7cbcf24..46fe6db60913b0187ccc030ecedf0964b618d67e 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.2.0.0',
+    version='2024.2.1.0',
     zip_safe=False,
 )
diff --git a/sohstationviewer/conf/constants.py b/sohstationviewer/conf/constants.py
index c82e64baf88561834fe9664d6b571aa4252a92ea..856187075662830097fbe4c24d0d15835d74b0bb 100644
--- a/sohstationviewer/conf/constants.py
+++ b/sohstationviewer/conf/constants.py
@@ -1,7 +1,7 @@
 from typing import Literal
 
 # The current version of SOHStationViewer
-SOFTWARE_VERSION = '2024.2.0.0'
+SOFTWARE_VERSION = '2024.2.1.0'
 
 # waveform pattern
 WF_1ST = 'A-HLM-V'