Version 0.9.0
This commit is contained in:
parent
7734a9ffff
commit
29557a18e8
4 changed files with 6 additions and 6 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
**Version 0.9.0 (unreleased)**
|
**Version 0.9.0**
|
||||||
- [SEMVER_MAJOR] Significant refactoring of modules
|
- [SEMVER_MAJOR] Significant refactoring of modules
|
||||||
- Use `itertools` to cleanup areas of code
|
- Use `itertools` to cleanup areas of code
|
||||||
- Use multiple threads for filtering trials
|
- Use multiple threads for filtering trials
|
||||||
|
|
|
||||||
6
Cargo.lock
generated
6
Cargo.lock
generated
|
|
@ -1,6 +1,6 @@
|
||||||
[root]
|
[root]
|
||||||
name = "oxipng"
|
name = "oxipng"
|
||||||
version = "0.8.2"
|
version = "0.9.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)",
|
||||||
|
|
@ -10,7 +10,7 @@ dependencies = [
|
||||||
"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)",
|
||||||
"itertools 0.4.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
"itertools 0.4.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"libc 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
"libc 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"libz-sys 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"libz-sys 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"miniz-sys 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
"miniz-sys 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"num_cpus 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
"num_cpus 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"regex 0.1.73 (registry+https://github.com/rust-lang/crates.io-index)",
|
"regex 0.1.73 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
|
@ -174,7 +174,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libz-sys"
|
name = "libz-sys"
|
||||||
version = "1.0.4"
|
version = "1.0.5"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"gcc 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)",
|
"gcc 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxipng"
|
name = "oxipng"
|
||||||
version = "0.8.2"
|
version = "0.9.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.8.2";
|
const VERSION_STRING: &'static str = "0.9.0";
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let matches = App::new("oxipng")
|
let matches = App::new("oxipng")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue