Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
I'm releasing a new version because I have new features, and I'm
about to blog about this app again.
  • Loading branch information
rhymeswithmogul committed Nov 14, 2024
1 parent cf70069 commit d900b70
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 16 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Change Log for `aprs-weather-submit`

## Next version
- Fixed a bug where v1.8.1 would not handle timeouts correctly using the Win32 API. The changes are queued for the next version, though I've already included them in the released binaries.
- Fixed a bug in APRS server negotiation. The `vers` field expects the app name and version, separated by a space; however, I was separating it with a forward slash instead.
## Version 1.8.2
<time datetime="2024-11-13">November 13, 2024</time>
- Fixed a bug where v1.8.1 would not handle timeouts correctly using the Win32 API. macOS and Linux users are not affected.
- Fixed incorrect behavior in APRS server negotiation. The `vers` field expects the app name and version, separated by a space; however, I was separating it with a forward slash instead. I don't know if this matters or not, but it should still be fixed.

## Version 1.8.1
<time datetime="2024-11-03">November 3, 2024</time>
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http://gnu.org/licenses/agpl-3.0.html>.

AC_INIT([aprs-weather-submit], [1.8.1], [https://github.com/rhymeswithmogul/aprs-weather-submit/])
AC_INIT([aprs-weather-submit], [1.8.2], [https://github.com/rhymeswithmogul/aprs-weather-submit/])
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror])
AC_PREREQ
AC_PROG_INSTALL
Expand Down
19 changes: 8 additions & 11 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
aprs-weather-submit (1.8-1) UNRELEASED; urgency=medium
aprs-weather-submit (1.8.2-1) UNRELEASED; urgency=medium

* Converted all I/O to non-blocking in case of network issues or APRS
server outages. (Thanks to DL9SEC for pointing this out.)
* Thus, there is a new parameter, `--timeout`, which will let you set
a custom timeout value of your choice. (Use `--timeout 0` for the
old blocking behavior.)
* Fixed a bug where `./configure --disable-aprs-is` was not honored by
the configure script.
* Added support for ISO-compliant compilers such as `gcc --pedantic`.
* Code cleanup.
* Fixed a bug where v1.8.1 would not handle timeouts correctly using
the Win32 API. macOS and Linux users are not affected.
* Fixed incorrect behavior in APRS server negotiation. The `vers`
field expects the app name and version, separated by a space;
however, I was separating it with a forward slash instead. I don't
know if this matters or not, but it should still be fixed.

-- Colin Cogle <colin@colincogle.name> Thu, 31 Oct 2024 22:45:00 -0400
-- Colin Cogle <colin@colincogle.name> Wed, 13 Nov 2024 20:35:00 -0500
2 changes: 1 addition & 1 deletion src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ with this program. If not, see <https://www.gnu.org/licenses/agpl-3.0.html>.
#endif

#ifndef VERSION
#define VERSION "1.8.1"
#define VERSION "1.8.2"
#endif

/* We don't support networking on DOS at this time.
Expand Down

0 comments on commit d900b70

Please sign in to comment.