bump version to 0.6.0

This commit is contained in:
Joseph Montanaro 2024-11-25 14:50:36 -05:00
parent e0e758554c
commit 07bf98e522
6 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{
"name": "creddy",
"version": "0.5.4",
"version": "0.6.0",
"scripts": {
"dev": "vite",
"build": "vite build",

4
src-tauri/Cargo.lock generated
View File

@ -1241,7 +1241,7 @@ dependencies = [
[[package]]
name = "creddy"
version = "0.5.4"
version = "0.6.0"
dependencies = [
"argon2",
"auto-launch",
@ -1287,7 +1287,7 @@ dependencies = [
[[package]]
name = "creddy_cli"
version = "0.5.4"
version = "0.6.0"
dependencies = [
"anyhow",
"clap",

View File

@ -1,6 +1,6 @@
[package]
name = "creddy"
version = "0.5.4"
version = "0.6.0"
description = "A friendly AWS credentials manager"
authors = ["Joseph Montanaro"]
license = ""

View File

@ -1,6 +1,6 @@
[package]
name = "creddy_cli"
version = "0.5.4"
version = "0.6.0"
edition = "2021"
[dependencies]

View File

@ -50,7 +50,7 @@
}
},
"productName": "creddy",
"version": "0.5.4",
"version": "0.6.0",
"identifier": "creddy",
"plugins": {},
"app": {

View File

@ -144,7 +144,7 @@
{:else if records !== null}
<div class="flex flex-col gap-6 items-center rounded-box border-2 border-dashed border-neutral-content/30 p-6">
<div>You have no saved Docker credentials.</div>
<button class="btn btn-primary btn-wide mx-auto" on:click={newSsh}>
<button class="btn btn-primary btn-wide mx-auto" on:click={newDocker}>
<Icon name="plus-circle-mini" class="size-5" />
Add
</button>