Version 0.10.0 [ci skip]
This commit is contained in:
parent
742b89f756
commit
99da13bd8e
4 changed files with 6 additions and 6 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
**Version 0.10.0 (unreleased)**
|
**Version 0.10.0**
|
||||||
- [SEMVER_MINOR] Make clap and regex dependencies optional
|
- [SEMVER_MINOR] Make clap and regex dependencies optional
|
||||||
- Enabled by default, needed for executable build; can be disabled for use in crates
|
- Enabled by default, needed for executable build; can be disabled for use in crates
|
||||||
- Remove reduction from palette to grayscale, which was not working and provided minimal benefit
|
- Remove reduction from palette to grayscale, which was not working and provided minimal benefit
|
||||||
|
|
|
||||||
6
Cargo.lock
generated
6
Cargo.lock
generated
|
|
@ -1,10 +1,10 @@
|
||||||
[root]
|
[root]
|
||||||
name = "oxipng"
|
name = "oxipng"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bit-vec 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"bit-vec 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"clap 2.9.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"clap 2.9.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"clippy 0.0.79 (registry+https://github.com/rust-lang/crates.io-index)",
|
"clippy 0.0.79 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"crc 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"crc 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"image 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"image 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
|
@ -57,7 +57,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "clap"
|
name = "clap"
|
||||||
version = "2.9.2"
|
version = "2.9.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi_term 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"ansi_term 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxipng"
|
name = "oxipng"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
authors = ["Joshua Holmer <jholmer.in@gmail.com>"]
|
authors = ["Joshua Holmer <jholmer.in@gmail.com>"]
|
||||||
description = "A lossless PNG compression optimizer"
|
description = "A lossless PNG compression optimizer"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ use std::fs::DirBuilder;
|
||||||
use std::io::{Write, stderr};
|
use std::io::{Write, stderr};
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
const VERSION_STRING: &'static str = "0.9.0";
|
const VERSION_STRING: &'static str = "0.10.0";
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let matches = App::new("oxipng")
|
let matches = App::new("oxipng")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue