Skip to content

Commit

Permalink
Merge pull request #2 from stepchowfun/v0.0.2
Browse files Browse the repository at this point in the history
Release v0.0.2
  • Loading branch information
stepchowfun committed May 22, 2018
2 parents 5641bf9 + 293f8c9 commit 7581097
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tagref"
version = "0.0.1"
version = "0.0.2"
authors = ["Stephan Boyer <stephan@stephanboyer.com>"]
description = "Tagref helps you refer to other locations in your codebase."
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The syntax is `[tag:label]` for tags and `[ref:label]` for references. Tagref wo
If you are running macOS or a GNU-based Linux on an x86-64 CPU, the following will install Tagref to `/usr/local/bin`:

```sh
curl -LSf https://raw.githubusercontent.com/stepchowfun/tagref/master/install.sh | sudo sh
curl -LSfs https://raw.githubusercontent.com/stepchowfun/tagref/master/install.sh | sudo sh
```

If you want to install to a different location, you can download a binary from the [releases page](https://github.com/stepchowfun/tagref/releases) and put it anywhere on your `$PATH`. If there is no pre-built binary available for your platform, you can build and install it with [Cargo](https://doc.rust-lang.org/book/second-edition/ch14-04-installing-binaries.html).
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
PREFIX=/usr/local/bin

# Which version to download
RELEASE=v0.0.1
RELEASE=v0.0.2

# Determine which binary to download.
FILENAME=''
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use std::process;
fn main() {
// Set up the command-line interface.
let matches = clap::App::new("Tagref")
.version("0.0.1")
.version("0.0.2")
.author("Stephan Boyer <stephan@stephanboyer.com>")
.about(
" \
Expand Down

0 comments on commit 7581097

Please sign in to comment.