diff --git a/HISTORY.rst b/HISTORY.rst
index fb69cdf9e027842ee58d78873a8afc50e0af5b73..a1eb17193cd68e483de19510ffaff0e7fc278972 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -6,3 +6,8 @@ History
 ------------------
 
 * First release on new build system.
+
+2018.176 (2018-06-25)
+-------------------
+
+* Updating version numbers to 2018.176.
\ No newline at end of file
diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml
index 2ca8a2c0933613f75ab2d0d508f0fe795125f037..4561f0be5e077706e7914429c233fcf1ffb83b76 100644
--- a/conda.recipe/meta.yaml
+++ b/conda.recipe/meta.yaml
@@ -1,6 +1,6 @@
 package:
   name: fixhdr
-  version: 2009.175
+  version: 2018.176
 
 source:
   path: ..
diff --git a/fixhdr/__init__.py b/fixhdr/__init__.py
index e15c51924ea2782843448430108264caeef8994b..01788bde5ea3b6e3b0d1dccc420433e7a22897f6 100644
--- a/fixhdr/__init__.py
+++ b/fixhdr/__init__.py
@@ -4,4 +4,4 @@
 
 __author__ = """IRIS PASSCAL"""
 __email__ = 'software-support@passcal.nmt.edu'
-__version__ = '2009.175'
+__version__ = '2018.176'
diff --git a/fixhdr/fixhdr.py b/fixhdr/fixhdr.py
index f93bb34376830bb1a4f7e9fbdfa722958aef5953..3c950610bcec5dd3a2c0430b0544f399efe31518 100755
--- a/fixhdr/fixhdr.py
+++ b/fixhdr/fixhdr.py
@@ -239,7 +239,13 @@
 # to be threads at all, and it was breaking with Tk because the functions that were the targets for the threads
 # weren't actually Tk/thread safe.
 
-VERSION = "2009.175"
+#
+# modification
+# version: 2018.176
+# author: Derick Hess
+# Updated cookiecutter version, added call to main(), etc.
+
+VERSION = "2018.176"
 
 import Pmw
 from Tkinter import *
diff --git a/setup.cfg b/setup.cfg
index 4a9405ac12bcbe6d53a36c31c6f7531cfb3acfa1..2c70c72191477bd61128d340bd2081a944c51354 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 2009.175
+current_version = 2018.176
 commit = True
 tag = True
 
diff --git a/setup.py b/setup.py
index 5a451add87e851362a3b08c198cdc54c789cd77b..7c694c2eeb965563f91af14311b922b45255d52c 100644
--- a/setup.py
+++ b/setup.py
@@ -51,6 +51,6 @@ setup(
     packages=find_packages(include=['fixhdr']),
     test_suite='tests',
     url='https://git.passcal.nmt.edu/passoft/fixhdr',
-    version='2009.175',
+    version='2018.176',
     zip_safe=False,
 )