Skip to content

Commit

Permalink
Merge pull request #115 from radarhere/version
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Dec 26, 2023
2 parents 9ed7838 + 75dc15a commit 686b63e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion imagequant-sys/c_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ doctest = false
release = false

[dependencies]
imagequant-sys = { version = "4.0.0", path = ".." }
imagequant-sys = { version = "4.0.3", path = ".." }

[build-dependencies]
cc = "1.0.72"
4 changes: 2 additions & 2 deletions imagequant-sys/libimagequant.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
#define LIQ_EXPORT extern
#endif

#define LIQ_VERSION 40000
#define LIQ_VERSION_STRING "4.0.0"
#define LIQ_VERSION 40003
#define LIQ_VERSION_STRING "4.0.3"

#ifndef LIQ_PRIVATE
#if defined(__GNUC__) || defined (__llvm__)
Expand Down
2 changes: 1 addition & 1 deletion imagequant-sys/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>org.pngquant</groupId>
<artifactId>libimagequant</artifactId>
<packaging>jar</packaging>
<version>4.0.0</version>
<version>4.0.3</version>
<name>pngquant</name>
<url>https://pngquant.org</url>
<build>
Expand Down
2 changes: 1 addition & 1 deletion src/capi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use crate::QuantizationResult;
use crate::RGBA;
use std::mem::MaybeUninit;

pub const LIQ_VERSION: u32 = 40000;
pub const LIQ_VERSION: u32 = 40202;

#[must_use]
pub fn liq_get_palette_impl(r: &mut QuantizationResult) -> &Palette {
Expand Down

0 comments on commit 686b63e

Please sign in to comment.