Skip to content

Commit

Permalink
Prepare v1.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
craigbarnes committed Apr 22, 2019
1 parent 3038220 commit 9bd8faa
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 9 deletions.
28 changes: 26 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,32 @@
Releases
========

v1.8 (latest release)
---------------------
v1.8.1 (latest release)
-----------------------

Released on 2019-04-22.

**Fixes:**

* Fixed parsing of escaped special characters in command arguments
(which was causing Lua syntax highlighting to fail).
* Removed use of `rep` (repeat character) control sequence, due to
problems caused by certain terminal emulators that claim to be
"xterm" but don't support the full set of features in the xterm
`terminfo(5)` entry (notably, the FreeBSD 12 console).

**Additions:**

* Show a confirmation prompt if Ctrl+q (quit) is pressed with unsaved
changes, instead of a cryptic error message.

**Downloads:**

* [dte-1.8.1.tar.gz](https://craigbarnes.gitlab.io/dist/dte/dte-1.8.1.tar.gz)
* [dte-1.8.1.tar.gz.sig](https://craigbarnes.gitlab.io/dist/dte/dte-1.8.1.tar.gz.sig)

v1.8
----

Released on 2019-04-18.

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ Installation
To build `dte` from source, first install the requirements listed above,
then use the following commands:

curl -LO https://craigbarnes.gitlab.io/dist/dte/dte-1.8.tar.gz
tar -xzf dte-1.8.tar.gz
cd dte-1.8
curl -LO https://craigbarnes.gitlab.io/dist/dte/dte-1.8.1.tar.gz
tar -xzf dte-1.8.1.tar.gz
cd dte-1.8.1
make -j8 && sudo make install

Documentation
Expand Down
6 changes: 3 additions & 3 deletions mk/build.mk
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
CC ?= gcc
CFLAGS ?= -g -O2
CFLAGS ?= -O2
LDFLAGS ?=
AWK = awk
VERSION = $(shell mk/version.sh 1.8)
VERSION = 1.8.1

WARNINGS = \
-Wall -Wextra -Wformat -Wformat-security \
Expand Down Expand Up @@ -118,7 +118,7 @@ else
# 0: Disable debugging
# 1: Enable BUG_ON() and light-weight sanity checks
# 3: Enable expensive sanity checks
DEBUG ?= 1
DEBUG = 0
endif

ifeq "$(DEBUG)" "0"
Expand Down
2 changes: 1 addition & 1 deletion mk/dev.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DIST_VERSIONS = 1.8 1.7 1.6 1.5 1.4 1.3 1.2 1.1 1.0
DIST_VERSIONS = 1.8.1 1.8 1.7 1.6 1.5 1.4 1.3 1.2 1.1 1.0
DIST_ALL = $(addprefix dte-, $(addsuffix .tar.gz, $(DIST_VERSIONS)))
GIT_HOOKS = $(addprefix .git/hooks/, commit-msg pre-commit)
SYNTAX_LINT = $(AWK) -f tools/syntax-lint.awk
Expand Down

0 comments on commit 9bd8faa

Please sign in to comment.