From 72a1e2a79c3b80f91b68234ca35c1bd7f1fc962e Mon Sep 17 00:00:00 2001 From: haixuanTao Date: Fri, 1 Nov 2024 04:20:39 +0100 Subject: [PATCH] Bump dav1d version to 1.4 --- .github/workflows/dav1d.yml | 4 ++-- README.md | 2 +- dav1d-sys/Cargo.toml | 2 +- dav1d-sys/build.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dav1d.yml b/.github/workflows/dav1d.yml index 5303c79..dad20c5 100644 --- a/.github/workflows/dav1d.yml +++ b/.github/workflows/dav1d.yml @@ -35,7 +35,7 @@ jobs: DAV1D_DIR: dav1d_dir LIB_PATH: lib/x86_64-linux-gnu run: | - git clone --branch 1.3.0 --depth 1 https://code.videolan.org/videolan/dav1d.git + git clone --branch 1.4.0 --depth 1 https://code.videolan.org/videolan/dav1d.git cd dav1d meson build -Dprefix=$HOME/$DAV1D_DIR -Denable_tools=false -Denable_examples=false --buildtype release ninja -C build @@ -91,7 +91,7 @@ jobs: - name: Build dav1d run: | - git clone --branch 1.3.0 --depth 1 https://code.videolan.org/videolan/dav1d.git + git clone --branch 1.4.0 --depth 1 https://code.videolan.org/videolan/dav1d.git cd dav1d meson build -Dprefix=C:\build -Denable_tools=false -Denable_examples=false --buildtype release ninja -C build diff --git a/README.md b/README.md index 14ef364..f6c3e98 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ steps above. ## Supported versions -The bindings require dav1d 1.3.0 +The bindings require dav1d 1.4.0 ## TODO - [x] Simple bindings diff --git a/dav1d-sys/Cargo.toml b/dav1d-sys/Cargo.toml index f920b7a..312e963 100644 --- a/dav1d-sys/Cargo.toml +++ b/dav1d-sys/Cargo.toml @@ -20,4 +20,4 @@ libc = "0.2" [package.metadata.system-deps.dav1d] name = "dav1d" -version = "1.3.0" +version = "1.4.0" diff --git a/dav1d-sys/build.rs b/dav1d-sys/build.rs index f5f9bbc..199b0ab 100644 --- a/dav1d-sys/build.rs +++ b/dav1d-sys/build.rs @@ -7,7 +7,7 @@ mod build { use std::process::{Command, Stdio}; const REPO: &str = "https://code.videolan.org/videolan/dav1d.git"; - const TAG: &str = "1.3.0"; + const TAG: &str = "1.4.0"; macro_rules! runner { ($cmd:expr, $($arg:expr),*) => {