github-release 0.1.2

Convert the latest tag on GitHub to a release.
Documentation
#![feature(external_doc)]
#![doc(include = "../README.md")]
#![deny(missing_docs)]
#![cfg_attr(test, deny(warnings))]
#![cfg_attr(test, feature(plugin))]
#![cfg_attr(test, plugin(clippy))]

#[macro_use]
extern crate quicli;
extern crate github_release;

use github_release::ghauth::Authenticator;

use quicli::prelude::*;

#[derive(Debug, StructOpt)]
struct Args {}

main!(|_args: Args| {
  let auth = Authenticator::default();
  let _creds = auth.auth()?;
});