diff --git a/OpenBSD/Makefile b/OpenBSD/Makefile index fe43efcc6..cccb5a1c9 100644 --- a/OpenBSD/Makefile +++ b/OpenBSD/Makefile @@ -4,7 +4,7 @@ MAINTAINER = Marc Espie CATEGORIES = multimedia COMMENT = closed caption subtitles extractor HOMEPAGE = https://ccextractor.org -V = 0.92 +V = 0.93 DISTFILES = ccextractor.${V:S/.//}-src.zip MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=ccextractor/} DISTNAME = ccextractor-$V diff --git a/docs/CHANGES.TXT b/docs/CHANGES.TXT index b423837f3..574289b6b 100644 --- a/docs/CHANGES.TXT +++ b/docs/CHANGES.TXT @@ -1,3 +1,8 @@ +0.93 (2021-08-16) +----------------- +- Minor Rust updates (format, typos, docs) +- Updated GUI + 0.92 (2021-08-10) ----------------- - Rust updates: Added srt writer diff --git a/linux/configure.ac b/linux/configure.ac index f24329f27..138968499 100644 --- a/linux/configure.ac +++ b/linux/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([CCExtractor], [0.92], [carlos@ccextractor.org]) +AC_INIT([CCExtractor], [0.93], [carlos@ccextractor.org]) AC_CONFIG_AUX_DIR([build-conf]) AC_CONFIG_SRCDIR([../src/ccextractor.c]) AM_INIT_AUTOMAKE([foreign subdir-objects]) diff --git a/mac/configure.ac b/mac/configure.ac index 378feb96c..4f23dd96e 100644 --- a/mac/configure.ac +++ b/mac/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([CCExtractor], [0.92], [carlos@ccextractor.org]) +AC_INIT([CCExtractor], [0.93], [carlos@ccextractor.org]) AC_CONFIG_AUX_DIR([build-conf]) AC_CONFIG_SRCDIR([../src/ccextractor.c]) AM_INIT_AUTOMAKE([foreign subdir-objects]) diff --git a/package_creators/PKGBUILD b/package_creators/PKGBUILD index d8bc4682c..45cdd93f8 100644 --- a/package_creators/PKGBUILD +++ b/package_creators/PKGBUILD @@ -1,5 +1,5 @@ pkgname=ccextractor -pkgver=0.92 +pkgver=0.93 pkgrel=1 pkgdesc="A closed captions and teletext subtitles extractor for video streams." arch=('i686' 'x86_64') diff --git a/src/lib_ccx/lib_ccx.h b/src/lib_ccx/lib_ccx.h index b17550498..e266f78d3 100644 --- a/src/lib_ccx/lib_ccx.h +++ b/src/lib_ccx/lib_ccx.h @@ -1,7 +1,7 @@ #ifndef CCX_CCEXTRACTOR_H #define CCX_CCEXTRACTOR_H -#define VERSION "0.92" +#define VERSION "0.93" // Load common includes and constants for library usage #include "ccx_common_platform.h"