Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
softprops committed Jul 24, 2017
1 parent e319d10 commit f2ecab5
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-codeowners"
version = "0.1.0"
version = "0.1.1"
authors = ["softprops <d.tangren@gmail.com>"]
description = "Rust cli for working with Github CODEOWNERS files"
readme = "README.md"
Expand All @@ -11,5 +11,5 @@ license = "MIT"
keywords = ["github", "owners"]

[dependencies]
codeowners = "0.1"
codeowners = "0.1.1"
clap = "2.25"
34 changes: 32 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,37 @@
# git-codeowners [![Build Status](https://travis-ci.org/softprops/git-codeowners.svg?branch=master)](https://travis-ci.org/softprops/git-codeowners)
# git-codeowners [![Build Status](https://travis-ci.org/softprops/git-codeowners.svg?branch=master)](https://travis-ci.org/softprops/git-codeowners) [![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](LICENSE) [![crates.io](https://img.shields.io/crates/v/codeowners.svg)]

> a git extention for Github [CODEOWNERS files](https://help.github.com/articles/about-codeowners/)
## install

### Homebrew

For osx users, you can use `brew` to install or update `git-codeowners`

```bash
$ brew install softprops/tools/git-codeowners
```

To upgrade, just use `brew upgrade` instead

### GH releases

You can download releases for osx and linux directly from github releases

```bash
$ cd $HOME/bin
$ curl -L "https://github.com/softprops/git-codeowners/releases/download/v0.1.1/git-codeowners-$(uname -s)-$(uname -m).tar.gz" \
| tar -xz
```

### Cargo

If you are a rust user can can just use `cargo`

```bash
$ cargo install git-codeowners
```

## usage

git-codeowners is intended for use as a git extention ( a program whose name starts with git- ) to extend your git workflow.
Expand All @@ -13,7 +43,7 @@ $ git codeowners src/main.rs

```bash
$ git-codeowners --help
git-codeowners 0.1.0
git-codeowners 0.1.1
Github CODEOWNERS answer sheet

USAGE:
Expand Down

0 comments on commit f2ecab5

Please sign in to comment.