From: Shuanglei Tao Date: Sun, 25 Dec 2016 16:33:54 +0000 (+0800) Subject: Bump to 1.2.2 X-Git-Url: http://git.prime8.dev/?a=commitdiff_plain;h=3b58edbfb6e8ef94fac202d8b9c23711ddd1b58b;p=ttyd.git Bump to 1.2.2 --- diff --git a/README.md b/README.md index d0c79cf..7a65720 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ USAGE: ttyd [options] [] VERSION: - 1.2.1 + 1.2.2 OPTIONS: --port, -p Port to listen (default: 7681, use `0` for random port) diff --git a/msys2/ttyd/PKGBUILD b/msys2/ttyd/PKGBUILD index 143900c..645eef4 100644 --- a/msys2/ttyd/PKGBUILD +++ b/msys2/ttyd/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Shuanglei Tao pkgname="ttyd" -pkgver=master +pkgver=1.2.2 pkgrel=1 pkgdesc="A command-line tool for sharing terminal over the web" arch=('any') diff --git a/openwrt/Makefile b/openwrt/Makefile index c7d29e3..d91a059 100644 --- a/openwrt/Makefile +++ b/openwrt/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ttyd -PKG_VERSION:=1.2.1 +PKG_VERSION:=1.2.2 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz diff --git a/src/server.c b/src/server.c index 088f536..68f9eac 100644 --- a/src/server.c +++ b/src/server.c @@ -1,6 +1,6 @@ #include "server.h" -#define TTYD_VERSION "1.2.1" +#define TTYD_VERSION "1.2.2" volatile bool force_exit = false; struct lws_context *context;