diff options
-rw-r--r-- | CHANGELOG.md | 10 | ||||
-rw-r--r-- | GNUmakefile | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 189a0c8a..73e4b607 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to aerc will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.18.1](https://git.sr.ht/~rjarry/aerc/refs/0.18.1) - 2024-07-15 + +### Fixed + +- Startup error if `log-file` directory does not exist. +- Aerc is now less pedantic about invalid headers for the maildir and notmuch + backends. +- Error when trying to configure `smtp-domain` with STARTTLS enabled. +- `smtp-domain` is now properly taken into account for TLS connections. + ## [0.18.0](https://git.sr.ht/~rjarry/aerc/refs/0.18.0) - 2024-07-02 ### Added diff --git a/GNUmakefile b/GNUmakefile index f651762b..517c8688 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,6 +1,6 @@ # variables that can be changed by users # -VERSION ?= $(shell git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 0.18.0) +VERSION ?= $(shell git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 0.18.1) DATE ?= $(shell date +%Y-%m-%d) PREFIX ?= /usr/local BINDIR ?= $(PREFIX)/bin |