Skip to content

Commit 2866580

Browse files
author
bors-servo
authored
Auto merge of #45 - behnam:dev, r=mbrubeck
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 -->
2 parents bfd439c + df7c946 commit 2866580

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

.travis.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,8 @@ script:
3131
- cargo test --verbose --features 'serde'
3232
- cargo test --verbose --features 'with_serde'
3333

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

38-
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then
39-
cargo run --verbose --features 'flame_it' --example 'flame_udhr';
40-
fi
37+
- test "$TRAVIS_RUST_VERSION" != "nightly" ||
38+
cargo run --verbose --features 'flame_it' --example 'flame_udhr'

Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unicode-bidi"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
authors = ["The Servo Project Developers"]
55
license = "MIT / Apache-2.0"
66
description = "Implementation of the Unicode Bidirectional Algorithm"
@@ -10,11 +10,11 @@ keywords = ["rtl", "unicode", "text", "layout", "bidi"]
1010

1111
# No data is shipped; benches, examples and tests also depend on data.
1212
exclude = [
13-
"benches/",
14-
"data/",
15-
"examples/",
16-
"tests/",
17-
"tools/",
13+
"benches/**",
14+
"data/**",
15+
"examples/**",
16+
"tests/**",
17+
"tools/**",
1818
]
1919

2020
[lib]

0 commit comments

Comments
 (0)