Skip to content

Commit 97c935c

Browse files
committed
tslib 1.21
1 parent ede483f commit 97c935c

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ option(BUILD_SHARED_LIBS "ON: tslib is build as shared;
1919
option(ENABLE_TOOLS "build additional tools" ON)
2020

2121
set(LIBTS_VERSION_CURRENT 10)
22-
set(LIBTS_VERSION_REVISION 2)
22+
set(LIBTS_VERSION_REVISION 3)
2323
set(LIBTS_VERSION_AGE 10)
2424

25-
set(PACKAGE_VERSION 1.20+)
25+
set(PACKAGE_VERSION 1.21)
2626
set(TS_POINTERCAL ${CMAKE_INSTALL_FULL_SYSCONFDIR}/pointercal)
2727
set(TS_CONF ${CMAKE_INSTALL_FULL_SYSCONFDIR}/ts.conf)
2828

NEWS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
tslib 1.21 - unreleased
2+
tslib 1.21 - released 2019-10-22
33
================================
44
This release includes libts version 0.10.3 and the following changes:
55
* various fixes for cmake builds

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ(2.57)
5-
AC_INIT([tslib], [1.20+], [[email protected]], [tslib], [http://tslib.org])
5+
AC_INIT([tslib], [1.21], [[email protected]], [tslib], [http://tslib.org])
66
# AC_CONFIG_AUX_DIR(config)
77
AM_INIT_AUTOMAKE([dist-bzip2 dist-xz subdir-objects])
88
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) # use silent rules where available - automake 1.11
@@ -189,7 +189,7 @@ AS_IF([test "x$with_sdl2" = "xyes"], [
189189
# increment if the interface changed
190190
LT_CURRENT=10
191191
# increment if anything changed. set to 0 if current was incremented!
192-
LT_REVISION=2
192+
LT_REVISION=3
193193
# increment if the interface change is backwards compatible (an addition). set to 0 if not.
194194
LT_AGE=10
195195
AC_SUBST(LT_CURRENT)

src/ts_version.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include "config.h"
1818
#include "tslib.h"
1919

20-
#define LIBTS_DATESTAMP "[unreleased]"
20+
#define LIBTS_DATESTAMP "2019-10-22"
2121

2222
static struct ts_lib_version_data version_data = {
2323
PACKAGE_VERSION,

website/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
<p>
5050
<b>Download tslib</b>
5151
<p>
52-
tslib only provides source archives. The latest release is version <b>1.20</b>
53-
including libts library version 0.10.2, released on the <b>21st of May 2019</b>.
52+
tslib only provides source archives. The latest release is version <b>1.21</b>
53+
including libts library version 0.10.3, released on the <b>22nd of October 2019</b>.
5454
Get it from our <a href="https://github.com/libts/tslib/releases">release page</a>
5555
(<a href="https://gitlab.com/tslib/tslib/tags">mirror</a>).
5656

0 commit comments

Comments
 (0)