version-sync 0.5.0

Simple crate for ensuring that version numbers in README files are updated when the crate version changes.
Documentation
environment:
  matrix:
  - TOOLCHAIN: stable
  - TOOLCHAIN: nightly

matrix:
  allow_failures:
    - TOOLCHAIN: nightly

install:
  - ps: Start-FileDownload 'https://static.rust-lang.org/rustup/dist/i686-pc-windows-gnu/rustup-init.exe'
  - rustup-init.exe -y --default-toolchain %TOOLCHAIN%
  - set PATH=%PATH%;%USERPROFILE%\.cargo\bin

build_script:
  - cargo build --verbose

test_script:
  - cargo test --verbose

cache:
  - '%USERPROFILE%\.cargo'
  - target