From 86258497e5842de1ae1f80e80ff50d663a108312 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Fri, 16 Aug 2024 03:49:22 +0000 Subject: [PATCH] update version to 0.6.0, ready to publish v0.6.0 --- Cargo.toml | 2 +- README.md | 6 +++--- dockers/alpine/Dockerfile | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 46e0588..41e0e98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "totebag" -version = "0.5.2" +version = "0.6.0" description = "A tool for extracting/archiving files and directories in multiple formats." repository = "https://github.com/tamada/totebag" readme = "README.md" diff --git a/README.md b/README.md index c62a551..22a4722 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # totebag -[![Version](https://shields.io/badge/Version-0.5.2-blue)](https://github.com/tamada/totebag/releases/tag/v0.5.2) +[![Version](https://shields.io/badge/Version-0.6.0-blue)](https://github.com/tamada/totebag/releases/tag/v0.6.0) [![MIT License](https://shields.io/badge/License-MIT-blue)](https://github.com/tamada/totebag/blob/main/LICENSE) -[![docker](https://shields.io/badge/Docker-0.5.2-blue?logo=docker)](https://github.com/tamada/totebag/pkgs/container/totebag) +[![docker](https://shields.io/badge/Docker-0.6.0-blue?logo=docker)](https://github.com/tamada/totebag/pkgs/container/totebag) [![build](https://github.com/tamada/totebag/actions/workflows/build.yaml/badge.svg)](https://github.com/tamada/totebag/actions/workflows/build.yaml) [![Rust Report Card](https://rust-reportcard.xuri.me/badge/github.com/tamada/totebag)](https://rust-reportcard.xuri.me/report/github.com/tamada/totebag) @@ -58,7 +58,7 @@ brew install tamada/tap/totebag ## :whale: Docker ```sh -docker run -it --rm -v $PWD:/workdir ghcr.io/tamada/totebag:0.5.2 [OPTIONS] [ARGUMENTS]... +docker run -it --rm -v $PWD:/workdir ghcr.io/tamada/totebag:0.6.0 [OPTIONS] [ARGUMENTS]... ``` - **Working directory**: `/workdir` diff --git a/dockers/alpine/Dockerfile b/dockers/alpine/Dockerfile index 74aafba..621966b 100644 --- a/dockers/alpine/Dockerfile +++ b/dockers/alpine/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.16 AS builder -ARG VERSION=0.5.2 +ARG VERSION=0.6.0 ARG TARGETPLATFORM ARG PLATFORM=${TARGETPLATFORM#linux/} @@ -12,7 +12,7 @@ RUN apk add --no-cache curl tar gzip \ FROM alpine:3.16 -ARG VERSION=0.5.2 +ARG VERSION=0.6.0 LABEL org.opencontainers.image.source https://github.com/tamada/totebag