Skip to content

Commit a6fd8d4

Browse files
cfsmp3claude
andcommitted
chore: Bump version to 0.96.3
Update version number across all files: - src/lib_ccx/lib_ccx.h (main version define) - linux/configure.ac, mac/configure.ac (autoconf) - OpenBSD/Makefile - package_creators/ (PKGBUILD, ccextractor.spec, debian.sh) - packaging/winget/ (all yaml manifests) - packaging/chocolatey/ (nuspec and install script) Note: Checksums in winget/chocolatey will need to be updated when the actual release MSI is built. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 5b05ce5 commit a6fd8d4

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

OpenBSD/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ MAINTAINER = Marc Espie <[email protected]>
44
CATEGORIES = multimedia
55
COMMENT = closed caption subtitles extractor
66
HOMEPAGE = https://ccextractor.org
7-
V = 0.96
7+
V = 0.96.3
88
DISTFILES = ccextractor.${V:S/.//}-src.zip
99
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=ccextractor/}
1010
DISTNAME = ccextractor-$V

linux/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.71])
5-
AC_INIT([CCExtractor], [0.96], [[email protected]])
5+
AC_INIT([CCExtractor], [0.96.3], [[email protected]])
66
AC_CONFIG_AUX_DIR([build-conf])
77
AC_CONFIG_SRCDIR([../src/ccextractor.c])
88
AM_INIT_AUTOMAKE([foreign subdir-objects])

mac/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.71])
5-
AC_INIT([CCExtractor],[0.96],[[email protected]])
5+
AC_INIT([CCExtractor],[0.96.3],[[email protected]])
66
AC_CONFIG_AUX_DIR([build-conf])
77
AC_CONFIG_SRCDIR([../src/ccextractor.c])
88
AM_INIT_AUTOMAKE([foreign subdir-objects])

package_creators/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pkgname=ccextractor
2-
pkgver=0.96
2+
pkgver=0.96.3
33
pkgrel=1
44
pkgdesc="A closed captions and teletext subtitles extractor for video streams."
55
arch=('i686' 'x86_64')

package_creators/ccextractor.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: ccextractor
2-
Version: 0.96
2+
Version: 0.96.3
33
Release: 1
44
Summary: A closed captions and teletext subtitles extractor for video streams.
55
Group: Applications/Internet

package_creators/debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
TYPE="debian" # can be one of 'slackware', 'debian', 'rpm'
33
PROGRAM_NAME="ccextractor"
4-
VERSION="0.96"
4+
VERSION="0.96.3"
55
RELEASE="1"
66
LICENSE="GPL-2.0"
77
MAINTAINER="[email protected]"

packaging/chocolatey/ccextractor.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
33
<metadata>
44
<id>ccextractor</id>
5-
<version>0.96.2</version>
5+
<version>0.96.3</version>
66
<title>CCExtractor</title>
77
<authors>CCExtractor Development Team</authors>
88
<owners>CCExtractor</owners>

packaging/chocolatey/tools/chocolateyInstall.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
77
$packageArgs = @{
88
packageName = $packageName
99
fileType = 'MSI'
10-
url64bit = 'https://github.com/CCExtractor/ccextractor/releases/download/v0.96.2/CCExtractor.0.96.2.msi'
10+
url64bit = 'https://github.com/CCExtractor/ccextractor/releases/download/v0.96.3/CCExtractor.0.96.3.msi'
1111
checksum64 = 'FFCAB0D766180AFC2832277397CDEC885D15270DECE33A9A51947B790F1F095B'
1212
checksumType64 = 'sha256'
1313
silentArgs = '/quiet /norestart'

packaging/winget/CCExtractor.CCExtractor.installer.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json
22
PackageIdentifier: CCExtractor.CCExtractor
3-
PackageVersion: 0.96.2
3+
PackageVersion: 0.96.3
44
Platform:
55
- Windows.Desktop
66
MinimumOSVersion: 10.0.0.0
@@ -15,7 +15,7 @@ UpgradeBehavior: install
1515
Installers:
1616
- Architecture: x64
1717
InstallerType: msi
18-
InstallerUrl: https://github.com/CCExtractor/ccextractor/releases/download/v0.96.2/CCExtractor.0.96.2.msi
18+
InstallerUrl: https://github.com/CCExtractor/ccextractor/releases/download/v0.96.3/CCExtractor.0.96.3.msi
1919
InstallerSha256: FFCAB0D766180AFC2832277397CDEC885D15270DECE33A9A51947B790F1F095B
2020
ManifestType: installer
2121
ManifestVersion: 1.9.0

packaging/winget/CCExtractor.CCExtractor.locale.en-US.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json
22
PackageIdentifier: CCExtractor.CCExtractor
3-
PackageVersion: 0.96.2
3+
PackageVersion: 0.96.3
44
PackageLocale: en-US
55
Publisher: CCExtractor Development
66
PublisherUrl: https://ccextractor.org

0 commit comments

Comments
 (0)