Skip to content

Commit

Permalink
Bump image dependency to 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Apr 29, 2018
1 parent 7dc8e2c commit 87a661a
Show file tree
Hide file tree
Showing 7 changed files with 84 additions and 30 deletions.
13 changes: 12 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,18 @@ os:
- linux
- osx

sudo: false
cache: cargo

matrix:
fast_finish: true

branches:
only:
- auto

script:
- cargo build --verbose --examples
- cargo test --verbose

notifications:
email: false
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## `0.2.6`

- Updated `image` dependency

## `0.2.5`

- Fixed important word-spacing bug. In any version from 0.2.3 to this release there was a bug
Expand Down
87 changes: 63 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "printpdf"
version = "0.2.5"
version = "0.2.6"
authors = ["Felix Schütt <[email protected]>"]
repository = "https://github.com/fschutt/printpdf"
homepage = "https://github.com/fschutt/printpdf"
Expand All @@ -15,7 +15,7 @@ error-chain = "0.11.0"
chrono = "0.4.0"
rand = { version = "0.4.2", default-features = false }
log = "0.4.1"
image = "0.18.0"
image = "0.19.0"

[features]
clippy = []
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

```toml,ignore
[dependencies]
printpdf = "0.2.5"
printpdf = "0.2.6"
```

## Features
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ build: false
# Equivalent to Travis' `script` phase
# TODO modify this phase as you see fit
test_script:
- cargo build
- cargo build --verbose --examples
- cargo test --verbose
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//!
//! ```toml,ignore
//! [dependencies]
//! printpdf = "0.2.5"
//! printpdf = "0.2.6"
//! ```
//!
//! # Features
Expand Down

0 comments on commit 87a661a

Please sign in to comment.