From 4a156a692a2bcc72b46f81cee14cf274b71d9640 Mon Sep 17 00:00:00 2001 From: Devaev Maxim Date: Tue, 12 Jan 2021 18:58:16 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.0=20=E2=86=92=203.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- man/ustreamer-dump.1 | 2 +- man/ustreamer.1 | 2 +- pkg/arch/PKGBUILD | 2 +- pkg/openwrt/Makefile | 2 +- src/libs/config.h | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b3b2d8f..76e02a7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 3.0 +current_version = 3.1 parse = (?P\d+)\.(?P\d+)(\.(?P\d+)(\-(?P[a-z]+))?)? serialize = {major}.{minor} diff --git a/man/ustreamer-dump.1 b/man/ustreamer-dump.1 index 290a877..56df159 100644 --- a/man/ustreamer-dump.1 +++ b/man/ustreamer-dump.1 @@ -1,6 +1,6 @@ .\" Manpage for ustreamer-dump. .\" Open an issue or pull request to https://github.com/pikvm/ustreamer to correct errors or typos -.TH USTREAMER-DUMP 1 "version 3.0" "January 2021" +.TH USTREAMER-DUMP 1 "version 3.1" "January 2021" .SH NAME ustreamer-dump \- Dump uStreamer's memory sink to file diff --git a/man/ustreamer.1 b/man/ustreamer.1 index 866a541..30068b5 100644 --- a/man/ustreamer.1 +++ b/man/ustreamer.1 @@ -1,6 +1,6 @@ .\" Manpage for ustreamer. .\" Open an issue or pull request to https://github.com/pikvm/ustreamer to correct errors or typos -.TH USTREAMER 1 "version 3.0" "November 2020" +.TH USTREAMER 1 "version 3.1" "November 2020" .SH NAME ustreamer \- stream MJPG video from any V4L2 device to the network diff --git a/pkg/arch/PKGBUILD b/pkg/arch/PKGBUILD index 829b613..95912b1 100644 --- a/pkg/arch/PKGBUILD +++ b/pkg/arch/PKGBUILD @@ -3,7 +3,7 @@ pkgname=ustreamer -pkgver=3.0 +pkgver=3.1 pkgrel=1 pkgdesc="Lightweight and fast MJPG-HTTP streamer" url="https://github.com/pikvm/ustreamer" diff --git a/pkg/openwrt/Makefile b/pkg/openwrt/Makefile index 462d01f..d1ffa0c 100644 --- a/pkg/openwrt/Makefile +++ b/pkg/openwrt/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ustreamer -PKG_VERSION:=3.0 +PKG_VERSION:=3.1 PKG_RELEASE:=1 PKG_MAINTAINER:=Maxim Devaev diff --git a/src/libs/config.h b/src/libs/config.h index b250e90..52fa5d9 100644 --- a/src/libs/config.h +++ b/src/libs/config.h @@ -23,5 +23,5 @@ #pragma once #ifndef VERSION -# define VERSION "3.0" +# define VERSION "3.1" #endif