Skip to content

Commit b5d1890

Browse files
committed
tslib 1.22
1 parent 68811c3 commit b5d1890

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
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 3)
22+
set(LIBTS_VERSION_REVISION 4)
2323
set(LIBTS_VERSION_AGE 10)
2424

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

NEWS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11

2-
tslib 1.22 - unreleased
2+
tslib 1.22 - released 2020-07-01
33
================================
44
This release includes libts version 0.10.4 and the following changes:
55
* fix ts_uinput build on 32 bit arch on newer kernels
6+
* ts_uinput: fix building on FreeBSD
67

78

89
tslib 1.21 - released 2019-10-22

configure.ac

Lines changed: 2 additions & 2 deletions
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.21+], [[email protected]], [tslib], [http://tslib.org])
5+
AC_INIT([tslib], [1.22], [[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=3
192+
LT_REVISION=4
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

Lines changed: 1 addition & 1 deletion
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 "2020-07-01"
2121

2222
static struct ts_lib_version_data version_data = {
2323
PACKAGE_VERSION,

website/index.html

Lines changed: 2 additions & 2 deletions
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.21</b>
53-
including libts library version 0.10.3, released on the <b>22nd of October 2019</b>.
52+
tslib only provides source archives. The latest release is version <b>1.22</b>
53+
including libts library version 0.10.4, released on the <b>1st of July 2020</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)