Skip to content
This repository has been archived by the owner on Feb 11, 2025. It is now read-only.

Commit

Permalink
Merge pull request #68 from thomastaylor312/chore/0.1.1_docs
Browse files Browse the repository at this point in the history
chore(*): Updates docs and Cargo for 0.1.1 release
  • Loading branch information
thomastaylor312 authored Dec 16, 2020
2 parents 0d164ed + fa3a3cc commit 8f5ba6c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 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 = "bindle"
version = "0.1.0"
version = "0.1.1"
authors = [
"Matt Butcher <matt.butcher@microsoft.com>",
"Taylor Thomas <taylor.thomas@microsoft.com>"
Expand Down
2 changes: 1 addition & 1 deletion bin/as2bindle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ and then write the results to a bindir/ directory as a standalone bindle.
#[tokio::main]
async fn main() {
let app = App::new("as2bindle")
.version("0.1.0")
.version(clap::crate_version!())
.author("DeisLabs at Microsoft Azure")
.about(DESCRIPTION)
.arg(
Expand Down
2 changes: 1 addition & 1 deletion bin/cargo2bindle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ write the results to a bindir/ directory as a standalone bindle.
#[tokio::main]
async fn main() {
let app = App::new("cargo2bindle")
.version("0.1.0")
.version(clap::crate_version!())
.author("DeisLabs at Microsoft Azure")
.about(DESCRIPTION)
.arg(
Expand Down
2 changes: 1 addition & 1 deletion bin/client/opts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This program provides tools for working with Bindle servers.
"#;

#[derive(Clap)]
#[clap(name = "bindle", version = "0.1.0", author = "DeisLabs at Microsoft Azure", about = DESCRIPTION)]
#[clap(name = "bindle", version = clap::crate_version!(), author = "DeisLabs at Microsoft Azure", about = DESCRIPTION)]
pub struct Opts {
#[clap(
short = 's',
Expand Down
2 changes: 1 addition & 1 deletion bin/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This program runs an HTTP frontend for a Bindle repository.
"#;

#[derive(Clap)]
#[clap(name = "bindle-server", version = "0.1.0", author = "DeisLabs at Microsoft Azure", about = DESCRIPTION)]
#[clap(name = "bindle-server", version = clap::crate_version!(), author = "DeisLabs at Microsoft Azure", about = DESCRIPTION)]
struct Opts {
#[clap(
short = 'i',
Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on Linux, MacOS, and Windows (in PowerShell):

1. Download your desired version from [the releases
page](https://github.com/deislabs/bindles/releases)
1. Unpack it (`tar -xzf bindle-v0.1.0-linux-amd64.tar.gz`)
1. Unpack it (`tar -xzf bindle-v0.1.1-linux-amd64.tar.gz`)
1. Move the bindle and bindle CLIs to their desired
destinations somewhere in your `$PATH` (e.g. `mv bindle bindle-server /usr/local/bin/` on Unix-like
systems or `mv *.exe C:\Windows\system32\` on Windows)
Expand All @@ -21,7 +21,7 @@ find Bindle, check to make sure that your `$PATH` environment variable is set co
#### Validating

If you'd like to validate the download, checksums can be downloaded from
https://bindle.blob.core.windows.net/releases/checksums-v0.1.0.txt
https://bindle.blob.core.windows.net/releases/checksums-v0.1.1.txt

### From Canary Builds

Expand Down

0 comments on commit 8f5ba6c

Please sign in to comment.