Skip to content

Commit e6979e9

Browse files
authored
Merge pull request #42 from porglezomp/release/v0.3
Release Version 0.3
2 parents acf39da + 686d36f commit e6979e9

File tree

12 files changed

+1788
-378
lines changed

12 files changed

+1788
-378
lines changed

.travis.yml

Lines changed: 28 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,45 @@
11
sudo: false
22
language: rust
3-
3+
dist: trusty
4+
addons:
5+
apt:
6+
packages:
7+
- libssl-dev
48
env:
59
global:
610
- PROJECT_NAME=feedburst
7-
os:
8-
- linux
9-
- osx
10-
rust:
11-
- stable
12-
- beta
13-
- nightly
11+
cache:
12+
cargo: true
13+
1414
matrix:
15-
allow_failures:
16-
- rust: nightly
17-
exclude:
18-
- os: osx
15+
fast_finish: true
16+
include:
17+
- os: linux
18+
rust: stable
19+
env: DO_COVERAGE=true
20+
- os: linux
1921
rust: beta
20-
- os: osx
22+
- os: linux
2123
rust: nightly
22-
cache:
23-
cargo: true
24+
- os: osx
25+
rust: stable
26+
allow_failures:
27+
- rust: nightly
28+
2429
before_script:
2530
- export PATH="$PATH:$HOME/.cargo/bin"
2631
- which rustfmt || cargo install rustfmt
2732
script:
2833
- cargo fmt -- --write-mode=diff
2934
- cargo build --verbose
3035
- cargo test --verbose
36+
37+
after_success: |
38+
if [[ "$DO_COVERAGE" == true ]]; then
39+
cargo install cargo-tarpaulin
40+
cargo tarpaulin --ciserver travis-ci --coveralls $TRAVIS_JOB_ID
41+
fi
42+
3143
before_deploy:
3244
- cargo build --release
3345
- tar czf "${PROJECT_NAME}-${TRAVIS_TAG}-${TRAVIS_OS_NAME}.tar.gz" target/release/feedburst
@@ -39,5 +51,5 @@ deploy:
3951
file: "${PROJECT_NAME}-${TRAVIS_TAG}-${TRAVIS_OS_NAME}.tar.gz"
4052
on:
4153
condition: $TRAVIS_RUST_VERSION = stable
42-
repo: porglezomp-misc/feedburst
54+
repo: porglezomp/feedburst
4355
tags: true

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
[package]
22
name = "feedburst"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
authors = ["Caleb Jones <code@calebjones.net>"]
5+
repository = "https://github.com/porglezomp/feedburst"
6+
license = "GPL-3.0+"
7+
readme = "README.md"
8+
keywords = ["comic", "rss", "atom", "syndication"]
9+
categories = ["command-line-utilities"]
10+
publish = false
11+
description = """
12+
A tool to consume comic RSS feeds and present them to you in bunches, on a schedule of your choosing.
13+
"""
14+
15+
[badges]
16+
travis-ci = { repository = "porglezomp/feedburst", branch = "develop" }
17+
appveyor = { repository = "porglezomp/feedburst", branch = "develop" }
18+
coveralls = { repository = "porglezomp/feedburst", branch = "develop" }
519

620
[dependencies]
721
syndication = "0.4"
@@ -12,4 +26,7 @@ clap = "2.25"
1226
open = "1.2"
1327
log = "0.3.8"
1428
pretty_env_logger = "0.1.1"
15-
app_dirs = "1.1.1"
29+
app_dirs = "1.1.1"
30+
31+
[[bin]]
32+
name = "feedburst"

0 commit comments

Comments
 (0)