Skip to content

Commit 468b3bb

Browse files
author
Sebastian Thiel
committed
bumping version to 3.0.0
1 parent 2e3d75e commit 468b3bb

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
33
name = "sheesy-cli"
4-
version = "2.0.0"
4+
version = "3.0.0"
55

66
description = "The 'share-secrets-safely' CLI to interact with GPG/pass-like vaults."
77
license = "LGPL-2.1"
@@ -26,14 +26,14 @@ lazy_static = "1.0.0"
2626

2727
[dependencies.sheesy-types]
2828
path = "lib/types"
29-
version = "2.0.0"
29+
version = "3.0.0"
3030

3131
[dependencies.sheesy-extract]
3232
path = "lib/extract"
33-
version = "2.0.0"
33+
version = "3.0.0"
3434

3535
[dependencies.sheesy-vault]
3636
path = "lib/vault"
37-
version = "2.0.0"
37+
version = "3.0.0"
3838

3939
[workspace]

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
3.0.0

bin/tag-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ while read -r cf; do
1111
sed -i "" -E "s/^version = \".*\"/version = \"$version\"/" "$cf"
1212
done
1313

14-
git commit -am "bumping version to $version" || true
14+
git commit -am "bumping version to $version"
1515
git tag -s -F "${notes_path}" "$version"
1616

1717
for lib in lib/types lib/extract lib/vault .; do

lib/extract/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
33
name = "sheesy-extract"
4-
version = "2.0.0"
4+
version = "3.0.0"
55

66
description = "Extraction functions used by 'share-secrets-safely' CLI. Use it to extract data from YAML files."
77
license = "MIT"
@@ -17,4 +17,4 @@ failure = "0.1.1"
1717

1818
[dependencies.sheesy-types]
1919
path = "../types"
20-
version = "2.0.0"
20+
version = "3.0.0"

lib/types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sheesy-types"
3-
version = "2.0.0"
3+
version = "3.0.0"
44
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
55
description = "Types used by 'share-secrets-safely' crates."
66
license = "MIT"

lib/vault/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
33
name = "sheesy-vault"
4-
version = "2.0.0"
4+
version = "3.0.0"
55

66
description = "Vault functionality used by 'share-secrets-safely' CLI. Use it to interact with GPG based vaults."
77
license = "LGPL-2.1"
@@ -26,4 +26,4 @@ mktemp = "0.3.1"
2626

2727
[dependencies.sheesy-types]
2828
path = "../types"
29-
version = "2.0.0"
29+
version = "3.0.0"

0 commit comments

Comments
 (0)