Skip to content

Commit 602c174

Browse files
committed
Bump version: 6.30 → 6.31
1 parent a2b8b35 commit 602c174

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = True
4-
current_version = 6.30
4+
current_version = 6.31
55
parse = (?P<major>\d+)\.(?P<minor>\d+)
66
serialize =
77
{major}.{minor}

man/ustreamer-dump.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Manpage for ustreamer-dump.
22
.\" Open an issue or pull request to https://github.com/pikvm/ustreamer to correct errors or typos
3-
.TH USTREAMER-DUMP 1 "version 6.30" "January 2021"
3+
.TH USTREAMER-DUMP 1 "version 6.31" "January 2021"
44

55
.SH NAME
66
ustreamer-dump \- Dump uStreamer's memory sink to file

man/ustreamer.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Manpage for ustreamer.
22
.\" Open an issue or pull request to https://github.com/pikvm/ustreamer to correct errors or typos
3-
.TH USTREAMER 1 "version 6.30" "November 2020"
3+
.TH USTREAMER 1 "version 6.31" "November 2020"
44

55
.SH NAME
66
ustreamer \- stream MJPEG video from any V4L2 device to the network

pkg/arch/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
pkgname=ustreamer
6-
pkgver=6.30
6+
pkgver=6.31
77
pkgrel=1
88
pkgdesc="Lightweight and fast MJPEG-HTTP streamer"
99
url="https://github.com/pikvm/ustreamer"

pkg/openwrt/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
include $(TOPDIR)/rules.mk
77

88
PKG_NAME:=ustreamer
9-
PKG_VERSION:=6.30
9+
PKG_VERSION:=6.31
1010
PKG_RELEASE:=1
1111
PKG_MAINTAINER:=Maxim Devaev <[email protected]>
1212

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def main() -> None:
3434
flags = _find_flags()
3535
setup(
3636
name="ustreamer",
37-
version="6.30",
37+
version="6.31",
3838
description="uStreamer tools",
3939
author="Maxim Devaev",
4040
author_email="[email protected]",

src/libs/const.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727

2828
#define US_VERSION_MAJOR 6
29-
#define US_VERSION_MINOR 30
29+
#define US_VERSION_MINOR 31
3030

3131
#define US_MAKE_VERSION2(_major, _minor) #_major "." #_minor
3232
#define US_MAKE_VERSION1(_major, _minor) US_MAKE_VERSION2(_major, _minor)

0 commit comments

Comments
 (0)