From: Shuanglei Tao Date: Sun, 23 Jun 2019 12:13:50 +0000 (+0800) Subject: Bump to 1.5.0 X-Git-Url: http://git.prime8.dev/?a=commitdiff_plain;h=6505289f6d4fd4f5bb8838f825a6f98a4aa7ef06;p=ttyd.git Bump to 1.5.0 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 6907e76..1811cbc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 2.8) project(ttyd) -set(PROJECT_VERSION "1.4.4") +set(PROJECT_VERSION "1.5.0") find_package(Git) if(GIT_FOUND) diff --git a/README.md b/README.md index 22104db..f995462 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ USAGE: ttyd [options] [] VERSION: - 1.4.4 + 1.5.0 OPTIONS: -p, --port Port to listen (default: 7681, use `0` for random port) diff --git a/debian/changelog b/debian/changelog index 56da03e..fef2e17 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ttyd (1.5.0-1) unstable; urgency=medium + + * New upstream release. + + -- Shuanglei Tao Sun, 23 Jun 2019 19:04:15 +0800 + ttyd (1.4.4-1) unstable; urgency=medium * New upstream release. diff --git a/msys2/ttyd/PKGBUILD b/msys2/ttyd/PKGBUILD index 06fb598..5e7254d 100644 --- a/msys2/ttyd/PKGBUILD +++ b/msys2/ttyd/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Shuanglei Tao pkgname="ttyd" -pkgver=1.4.4 +pkgver=1.5.0 pkgrel=1 pkgdesc="A command-line tool for sharing terminal over the web" arch=('i686' 'x86_64') @@ -31,4 +31,4 @@ package() { options=('staticlibs' 'strip') cd "${srcdir}/build-${CARCH}" make DESTDIR=${pkgdir} install -} \ No newline at end of file +} diff --git a/openwrt/ttyd/Makefile b/openwrt/ttyd/Makefile index b14a04f..461c0c4 100644 --- a/openwrt/ttyd/Makefile +++ b/openwrt/ttyd/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ttyd -PKG_VERSION:=1.4.4 +PKG_VERSION:=1.5.0 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz diff --git a/scripts/cross-build.sh b/scripts/cross-build.sh index 5eb7ed8..16693ae 100755 --- a/scripts/cross-build.sh +++ b/scripts/cross-build.sh @@ -11,8 +11,8 @@ BUILD_ROOT="${BUILD_ROOT:-/opt/build}" ZLIB_VERSION="${ZLIB_VERSION:-1.2.11}" JSON_C_VERSION="${JSON_C_VERSION:-0.13.1}" OPENSSL_VERSION="${OPENSSL_VERSION:-1.0.2p}" -LIBWEBSOCKETS_VERSION="${LIBWEBSOCKETS_VERSION:-2.4.2}" -TTYD_VERSION="${TTYD_VERSION:-1.4.4}" +LIBWEBSOCKETS_VERSION="${LIBWEBSOCKETS_VERSION:-3.1.0}" +TTYD_VERSION="${TTYD_VERSION:-1.5.0}" build_zlib() { echo "=== Building zlib ($TARGET)..."