From ff368bc980489a7cd0aed647e9f2159220610e89 Mon Sep 17 00:00:00 2001 From: Murilo Pereira Date: Mon, 1 Jun 2020 17:03:02 +0200 Subject: [PATCH] Release 1.3.0. --- CHANGELOG | 8 ++++++++ Makefile | 2 +- README | 6 +++--- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 501cf2d..48800d7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,14 @@ * CHANGELOG +** [[https://github.com/mpereira/tty-solitaire/releases/tag/v1.3.0][v1.3.0]] (2020-06-01) +*** Features + - [[https://en.wikipedia.org/wiki/Four-color_deck][Four-color deck]] mode via =--four-color-deck=. [[https://github.com/mpereira/tty-solitaire/pull/43][(#43)]] + - "No background color" mode via =--no-background-color=. [[https://github.com/mpereira/tty-solitaire/pull/31][(#31)]] + +*** Bug fixes + - Fixed building with latest GCC (reported in [[https://github.com/mpereira/tty-solitaire/issues/40][#40]]). [[https://github.com/mpereira/tty-solitaire/pull/42][(#42)]] + ** [[https://github.com/mpereira/tty-solitaire/releases/tag/v1.2.0][v1.2.0]] (2020-05-31) *** Bug fixes - Fixed off-by-one issue in ~game:shuffle_deck()~. [[https://github.com/mpereira/tty-solitaire/pull/35][(#35)]] diff --git a/Makefile b/Makefile index 7113fac..1468aea 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 1.2.0 +VERSION = 1.3.0 CC ?= gcc CFLAGS ?= -g diff --git a/README b/README index ed1d5d5..0d0c4c9 100644 --- a/README +++ b/README @@ -64,9 +64,9 @@ **** Install tty-solitaire #+begin_src bash - wget -O tty-solitaire-v1.2.0.tar.gz https://github.com/mpereira/tty-solitaire/archive/v1.2.0.tar.gz - tar xvf tty-solitaire-v1.2.0.tar.gz - cd tty-solitaire-1.2.0 + wget -O tty-solitaire-v1.3.0.tar.gz https://github.com/mpereira/tty-solitaire/archive/v1.3.0.tar.gz + tar xvf tty-solitaire-v1.3.0.tar.gz + cd tty-solitaire-1.3.0 make sudo make install #+end_src