Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
  • Loading branch information
Keruspe committed Feb 5, 2019
1 parent cb9dfd3 commit 7961f72
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 21 deletions.
47 changes: 28 additions & 19 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,34 @@
sudo: false
language: rust

rust:
- nightly
- beta
- stable

before_script:
- cargo install cargo-travis
- export PATH=$HOME/.cargo/bin:$PATH

after_success:
- cargo coveralls --lib
sudo: required

addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
- cmake
sources:
- kalakris-cmake
- libssl-dev

cache: cargo

matrix:
include:
- rust: 1.31.1
- rust: stable
- rust: beta
- rust: nightly
- name: osx
rust: nightly
os: osx
- name: minimal-versions
rust: nightly
script:
- cargo -Z minimal-versions test --verbose --all

script:
- cargo build --verbose --all
- cargo test --verbose --all

after_success: |
if [[ "$TRAVIS_RUST_VERSION" == stable ]]; then
RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install cargo-tarpaulin
cargo tarpaulin --ciserver travis-ci --coveralls $TRAVIS_JOB_ID
fi
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "brainfuck_rs"
version = "1.1.1"
version = "2.0.0"
edition = "2018"
authors = ["Marc-Antoine Perennou <Marc-Antoine@Perennou.com>"]
description = "Brainfuck parser and interpreter using nom"
Expand Down

0 comments on commit 7961f72

Please sign in to comment.