Skip to content

Commit

Permalink
Prepare for 1.14.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
hpjansson committed Jun 17, 2024
1 parent 13efe2a commit 4bfbf21
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 4 deletions.
5 changes: 3 additions & 2 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ git log. For a complete list, you could try:

git log --pretty="format:%an <%ae>" | sort -f | uniq

Per 2024-01-23, this yields the following (sans duplicates):
Per 2024-06-17, this yields the following (sans duplicates):

alkahest <cyphergothic@protonmail.com>
begasus <begasus@gmail.com>
Expand All @@ -25,14 +25,15 @@ Michael Vetter <jubalh@iodoru.org>
Mikel Olasagasti Uranga <mikel@olasagasti.info>
Mo Zhou <cdluminate@gmail.com>
oshaboy <35503208+oshaboy@users.noreply.github.com>
oupson <oupson1er@gmail.com>
Ricardo Arguello <ricardo.arguello@gmail.com>
Robert-André Mauchin <zebob.m@gmail.com>
Roman Wagner <roman.wagner@pm.me>
Samuel Thibault <samuel.thibault@ens-lyon.org>
Simon Law <sfllaw@sfllaw.ca>
sitiom <sitiom@proton.me>
Sotiris Papatheodorou <sotiris@papatheodorou.xyz>
Sudhakar Verma <svermaiiti@gmail.com>
Tim Gates <tim.gates@iress.com>
Wu Zhenyu <wuzhenyu@ustc.edu>
Øyvind Kolås <pippin@gimp.org>
oupson <oupson1er@gmail.com>
22 changes: 22 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
Chafa releases
==============

1.14.1 (2024-06-17)
-------------------

This release brings bug fixes, compatibility improvements and some performance
enhancements.

* A JPEG XL (.jxl) loader was added using libjxl (github#188, @oupson).

* Added detection of the Eat "Emulate a Terminal" Emacs terminal (Simon Law).

* Symbols mode was sped up significantly on AVX2-capable platforms.

* Tests: A new test driver was added. It will log the specifics of any failures,
which aids debugging of CI builds (issue found by Mo Zhou).

* Bug fixes:
github#189 Fix installation of zsh completions (Felix Yan).
github#190 Fix a small memory leak in ChafaCanvas (found by @jstkdng).
github#192 Wrong sixel padding in some circumstances (found by @dnkl).
github#195 tmux passthrough enabled when already set (found by Ron Lau).
github#196 iTerm mode not enabled automatically (found by @sudo-burger).

1.14.0 (2024-01-08)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion chafa/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ noinst_LTLIBRARIES =
noinst_HEADERS =

libchafa_la_CFLAGS = $(LIBCHAFA_CFLAGS) $(GLIB_CFLAGS) -DCHAFA_COMPILATION
libchafa_la_LDFLAGS = $(LIBCHAFA_LDFLAGS) -no-undefined -version-info 9:0:9
libchafa_la_LDFLAGS = $(LIBCHAFA_LDFLAGS) -no-undefined -version-info 9:1:9
libchafa_la_LIBADD = $(GLIB_LIBS) internal/libchafa-internal.la -lm

libchafa_la_SOURCES = \
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dnl --- Package configuration ---

m4_define([chafa_major_version], [1])
m4_define([chafa_minor_version], [14])
m4_define([chafa_micro_version], [0])
m4_define([chafa_micro_version], [1])

m4_define([chafa_version], [chafa_major_version.chafa_minor_version.chafa_micro_version])

Expand Down

0 comments on commit 4bfbf21

Please sign in to comment.