Skip to content

Commit f2ecab5

Browse files
committed
bump version
1 parent e319d10 commit f2ecab5

File tree

3 files changed

+38
-8
lines changed

3 files changed

+38
-8
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-codeowners"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["softprops <[email protected]>"]
55
description = "Rust cli for working with Github CODEOWNERS files"
66
readme = "README.md"
@@ -11,5 +11,5 @@ license = "MIT"
1111
keywords = ["github", "owners"]
1212

1313
[dependencies]
14-
codeowners = "0.1"
14+
codeowners = "0.1.1"
1515
clap = "2.25"

README.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,37 @@
1-
# git-codeowners [![Build Status](https://travis-ci.org/softprops/git-codeowners.svg?branch=master)](https://travis-ci.org/softprops/git-codeowners)
1+
# 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)]
22

33
> a git extention for Github [CODEOWNERS files](https://help.github.com/articles/about-codeowners/)
44
5+
## install
6+
7+
### Homebrew
8+
9+
For osx users, you can use `brew` to install or update `git-codeowners`
10+
11+
```bash
12+
$ brew install softprops/tools/git-codeowners
13+
```
14+
15+
To upgrade, just use `brew upgrade` instead
16+
17+
### GH releases
18+
19+
You can download releases for osx and linux directly from github releases
20+
21+
```bash
22+
$ cd $HOME/bin
23+
$ curl -L "https://github.com/softprops/git-codeowners/releases/download/v0.1.1/git-codeowners-$(uname -s)-$(uname -m).tar.gz" \
24+
| tar -xz
25+
```
26+
27+
### Cargo
28+
29+
If you are a rust user can can just use `cargo`
30+
31+
```bash
32+
$ cargo install git-codeowners
33+
```
34+
535
## usage
636

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

1444
```bash
1545
$ git-codeowners --help
16-
git-codeowners 0.1.0
46+
git-codeowners 0.1.1
1747
Github CODEOWNERS answer sheet
1848

1949
USAGE:

0 commit comments

Comments
 (0)