diff --git a/CHANGELOG.md b/CHANGELOG.md
index f6a2a1c..ca23fcb 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## Version 1.7.1
+
+This patch fixes a compile-time bug on armhf platforms. The format identifer `%zu` is used to get around an error about the size of `size_t`.
+
## Version 1.7
* The icon can now be changed from the default (WX) icon using the new `--icon` option.
diff --git a/NEWS.md b/NEWS.md
index 5df9eae..824d977 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -7,3 +7,7 @@ This file details all of the user-facing changes that are in version 1.7 of aprs
The new `--icon` parameter lets you specify a character from the two symbol tables. If not specified, you will get the classic weather icon.
Note that APRS.fi does not support parsing weather data from packets that have custom icons. If this is important to you, do not use this new feature.
+
+## ARMHF FIXES
+
+Version 1.7 did not compile on the armhf platforms. Version 1.7.1 is fixed.
diff --git a/configure.ac b/configure.ac
index 01209c3..8584cb8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,7 +17,7 @@ dnl
dnl You should have received a copy of the GNU Affero General Public License
dnl along with this program. If not, see .
-AC_INIT([aprs-weather-submit], [1.7], [https://github.com/rhymeswithmogul/aprs-weather-submit/])
+AC_INIT([aprs-weather-submit], [1.7.1], [https://github.com/rhymeswithmogul/aprs-weather-submit/])
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror])
AC_PREREQ
AC_PROG_INSTALL
diff --git a/debian/changelog b/debian/changelog
index 7dd00e1..f091c7a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,5 @@
-aprs-weather-submit (1.7-2) jammy; urgency=medium
+aprs-weather-submit (1.7.1-1) unstable; urgency=medium
- * The icon can now be changed from the default (WX) icon using the new
- `--icon` option.
- * Output of `snprintf()` is now better checked to make sure we haven't
- overflowed our buffer.
* Fixed a compile-time error on armhf platforms.
- -- Colin Cogle Thu, 30 Nov 2023 00:32:00 -0500
+ -- Colin Cogle Thu, 30 Nov 2023 01:32:00 -0500
diff --git a/debian/files b/debian/files
index 544ad21..6ffdaab 100644
--- a/debian/files
+++ b/debian/files
@@ -1,3 +1,3 @@
-aprs-weather-submit-dbgsym_1.7-2_amd64.ddeb debug optional automatic=yes
-aprs-weather-submit_1.7-2_amd64.buildinfo hamradio optional
-aprs-weather-submit_1.7-2_amd64.deb hamradio optional
+aprs-weather-submit-dbgsym_1.7-1.1_amd64.ddeb debug optional automatic=yes
+aprs-weather-submit_1.7.1-1_amd64.buildinfo hamradio optional
+aprs-weather-submit_1.7.1-1_amd64.deb hamradio optional
diff --git a/man/aprs-weather-submit.man b/man/aprs-weather-submit.man
index 6f1ae30..afd601d 100644
--- a/man/aprs-weather-submit.man
+++ b/man/aprs-weather-submit.man
@@ -18,7 +18,7 @@
.\"
.\" (This page is best viewed with the command: groff -man)
.\"
-.TH aprs\-weather\-submit 1 "2023-11-29" "Version 1.7" "aprs-weather-submit General Help"
+.TH aprs\-weather\-submit 1 "2023-11-30" "Version 1.7.1" "aprs-weather-submit General Help"
.SH NAME
aprs\-weather\-submit \- manually submit weather station data to the APRS-IS network
.SH DESCRIPTION
diff --git a/src/main.h b/src/main.h
index 9bd199b..5aac74d 100755
--- a/src/main.h
+++ b/src/main.h
@@ -28,7 +28,7 @@ with this program. If not, see .
#endif
#ifndef VERSION
-#define VERSION "1.7"
+#define VERSION "1.7.1"
#endif
/* We don't support networking on DOS at this time.