Skip to content

Commit

Permalink
chore: Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmah309 committed Oct 27, 2024
1 parent d70a063 commit 542d1e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "containeryard"
description = "Container Yard is a declarative, reproducible, and reusable decentralized approach for defining containers. Think Nix flakes meets Containerfiles (aka Dockerfiles)."
authors = ["Henry McMahon"]
license = "Apache-2.0"
version = "0.2.6"
version = "0.2.7"
edition = "2021"
repository = "https://github.com/mcmah309/containeryard"
rust-version = "1.80"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Note: `yard` is the cli tool for ContainerYard.
### Debian - Ubuntu, Linux Mint, Pop!_OS, etc.

```bash
RELEASE_VER=<INSERT_CURRENT_VERSION> # e.g. RELEASE_VER='v0.2.6'
RELEASE_VER=<INSERT_CURRENT_VERSION> # e.g. RELEASE_VER='v0.2.7'
deb_file="containeryard_$(echo $RELEASE_VER | sed 's/^v//')-1_amd64.deb"
curl -LO https://github.com/mcmah309/containeryard/releases/download/$RELEASE_VER/$deb_file
dpkg -i "$deb_file"
Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::path::PathBuf;
use clap::{Parser, Subcommand};

#[derive(Parser)]
#[clap(name = "yard", author = "Henry McMahon", version = "0.2.6", about = "A declarative reusable decentralized approach for defining containers", long_about = None)]
#[clap(name = "yard", author = "Henry McMahon", version = "0.2.7", about = "A declarative reusable decentralized approach for defining containers", long_about = None)]
pub struct Cli {
#[clap(subcommand)]
pub command: Commands,
Expand Down

0 comments on commit 542d1e4

Please sign in to comment.