From e546e43fe45fe1d4d2949a15c47bcca6e1eecbc1 Mon Sep 17 00:00:00 2001 From: Jannis R Date: Wed, 2 Mar 2022 12:12:24 +0100 Subject: [PATCH] use 5.0 binaries; 5.0.0 --- README.md | 6 +++--- package-lock.json | 4 ++-- package.json | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b75d471..cbc5d95 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,12 @@ **[ffmpeg](https://ffmpeg.org) static binaries for Mac OSX, Linux, Windows.** -Supports macOS (64-bit and arm64), Linux (32 and 64-bit, armhf, arm64), Windows (32 and 64-bit). [The ffmpeg version currently used is `4.4.1`.](https://github.com/eugeneware/ffmpeg-static/releases/tag/b4.4.1) +Supports macOS (64-bit and arm64), Linux (32 and 64-bit, armhf, arm64), Windows (32 and 64-bit). [The ffmpeg version currently used is `5.0`.](https://github.com/eugeneware/ffmpeg-static/releases/tag/b5.0) [![npm version](https://img.shields.io/npm/v/ffmpeg-static.svg)](https://www.npmjs.com/package/ffmpeg-static) ![minimum Node.js version](https://img.shields.io/node/v/ffmpeg-static.svg) -*Note:* The version of `ffmpeg-static` follows [SemVer](http://semver.org). When releasing new versions, **we do *not* consider breaking changes in `ffmpeg` itself**, but only the JS interface (see below). For example, `ffmpeg-static@4.4.1` downloads ffmpeg `4.4.1`. To prevent an `ffmpeg-static` upgrade downloading backwards-incompatible ffmpeg versions, [use a strict version range](https://docs.npmjs.com/files/package.json#dependencies) for it or use a [lockfile](https://docs.npmjs.com/files/package-lock.json). +*Note:* The version of `ffmpeg-static` follows [SemVer](http://semver.org). When releasing new versions, **we do *not* consider breaking changes in `ffmpeg` itself**, but only the JS interface (see below). For example, `ffmpeg-static@4.5.0` downloads ffmpeg `5.0`. To prevent an `ffmpeg-static` upgrade downloading backwards-incompatible ffmpeg versions, [use a strict version range](https://docs.npmjs.com/files/package.json#dependencies) for it or use a [lockfile](https://docs.npmjs.com/files/package-lock.json). Also check out [`node-ffmpeg-installer`](https://github.com/kribblo/node-ffmpeg-installer)! @@ -19,7 +19,7 @@ This module is installed via npm: $ npm install ffmpeg-static ``` -*Note:* During installation, it will download the appropriate `ffmpeg` binary from the [`b4.4.1` GitHub release](https://github.com/eugeneware/ffmpeg-static/releases/tag/b4.4.1). Use and distribution of the binary releases of FFmpeg are covered by their respective license. +*Note:* During installation, it will download the appropriate `ffmpeg` binary from the [`b5.0` GitHub release](https://github.com/eugeneware/ffmpeg-static/releases/tag/b5.0). Use and distribution of the binary releases of FFmpeg are covered by their respective license. ### Electron & other cross-platform packaging tools diff --git a/package-lock.json b/package-lock.json index 25d69e3..bb15182 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ffmpeg-static", - "version": "4.4.1", + "version": "5.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ffmpeg-static", - "version": "4.4.1", + "version": "5.0.0", "hasInstallScript": true, "license": "GPL-3.0-or-later", "dependencies": { diff --git a/package.json b/package.json index f7e8129..11ec3f8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ffmpeg-static", - "version": "4.4.1", + "version": "5.0.0", "description": "ffmpeg static binaries for Mac OSX and Linux and Windows", "main": "index.js", "files": [ @@ -15,8 +15,8 @@ "prepublishOnly": "npm run lint && npm run install && npm test" }, "ffmpeg-static": { - "binary-release-tag": "b4.4.1", - "binary-release-name": "4.4.1" + "binary-release-tag": "b5.0", + "binary-release-name": "5.0" }, "repository": { "type": "git",