Skip to content

Commit

Permalink
Auto merge of #45 - behnam:dev, r=mbrubeck
Browse files Browse the repository at this point in the history
Bump version to 0.3.4

* Upgrade to Unicode 10.0.0, released on 20 June 2017.

* Exclude data files and source files depending on data from crate package.

* Small fix for integration tests.

* Enable AppVeyor CI and improve Travis CI script.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/unicode-bidi/45)
<!-- Reviewable:end -->
  • Loading branch information
bors-servo authored Jul 6, 2017
2 parents bfd439c + df7c946 commit 2866580
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
10 changes: 4 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,8 @@ script:
- cargo test --verbose --features 'serde'
- cargo test --verbose --features 'with_serde'

- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then
cargo bench --verbose --features 'bench_it';
fi
- test "$TRAVIS_RUST_VERSION" != "nightly" ||
cargo bench --verbose --features 'bench_it'

- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then
cargo run --verbose --features 'flame_it' --example 'flame_udhr';
fi
- test "$TRAVIS_RUST_VERSION" != "nightly" ||
cargo run --verbose --features 'flame_it' --example 'flame_udhr'
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unicode-bidi"
version = "0.3.3"
version = "0.3.4"
authors = ["The Servo Project Developers"]
license = "MIT / Apache-2.0"
description = "Implementation of the Unicode Bidirectional Algorithm"
Expand All @@ -10,11 +10,11 @@ keywords = ["rtl", "unicode", "text", "layout", "bidi"]

# No data is shipped; benches, examples and tests also depend on data.
exclude = [
"benches/",
"data/",
"examples/",
"tests/",
"tools/",
"benches/**",
"data/**",
"examples/**",
"tests/**",
"tools/**",
]

[lib]
Expand Down

0 comments on commit 2866580

Please sign in to comment.