Bump version

This commit is contained in:
Andrew 2025-11-26 20:18:26 +13:00
parent e3076bfedf
commit 6d6be2d01e
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View file

@ -406,7 +406,7 @@ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
[[package]] [[package]]
name = "oxipng" name = "oxipng"
version = "9.1.5" version = "10.0.0"
dependencies = [ dependencies = [
"bitvec", "bitvec",
"clap", "clap",

View file

@ -20,7 +20,7 @@ homepage = "https://github.com/oxipng/oxipng"
license = "MIT" license = "MIT"
name = "oxipng" name = "oxipng"
repository = "https://github.com/oxipng/oxipng" repository = "https://github.com/oxipng/oxipng"
version = "9.1.5" version = "10.0.0"
rust-version = "1.85.1" rust-version = "1.85.1"
[badges] [badges]

View file

@ -86,7 +86,7 @@ preamble to an already existing one:
```yaml ```yaml
repos: repos:
- repo: https://github.com/oxipng/oxipng - repo: https://github.com/oxipng/oxipng
rev: v9.1.5 rev: v10.0.0
hooks: hooks:
- id: oxipng - id: oxipng
args: ["-o", "4", "--strip", "safe", "--alpha"] args: ["-o", "4", "--strip", "safe", "--alpha"]
@ -117,7 +117,7 @@ input filename, into the [optimize function](https://docs.rs/oxipng/latest/oxipn
It is recommended to disable the "binary" feature when including Oxipng as a library. Currently, there is It is recommended to disable the "binary" feature when including Oxipng as a library. Currently, there is
no simple way to just disable one feature in Cargo, it has to be done by disabling default features no simple way to just disable one feature in Cargo, it has to be done by disabling default features
and specifying the desired ones, for example: and specifying the desired ones, for example:
`oxipng = { version = "9.0", features = ["parallel", "zopfli", "filetime"], default-features = false }` `oxipng = { version = "10.0", features = ["parallel", "zopfli", "filetime"], default-features = false }`
## Software using Oxipng ## Software using Oxipng