Skip to content

Commit d92b11c

Browse files
committed
Bump version
1 parent 25ab35b commit d92b11c

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

bash-utils/bash-utils.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function bashUtilsVersion() {
2626
# this is default installation script for utils
2727
# ./bash-utils.sh bashUtilsSetup "/var/kiraglob"
2828
function bashUtilsSetup() {
29-
local BASH_UTILS_VERSION="v0.3.55"
29+
local BASH_UTILS_VERSION="v0.3.56"
3030
local COSIGN_VERSION="v2.0.0"
3131
if [ "$1" == "version" ] ; then
3232
echo "$BASH_UTILS_VERSION"
@@ -2328,3 +2328,4 @@ fi
23282328

23292329

23302330

2331+

bip39gen/cmd/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"github.com/spf13/cobra"
77
)
88

9-
const Bip39GenVersion = "v0.3.55"
9+
const Bip39GenVersion = "v0.3.56"
1010

1111
func cmdVersion(cmd *cobra.Command, args []string) error {
1212
fmt.Println(Bip39GenVersion)

build-tools/update_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import re
22
import sys
33

4-
version = "v0.3.55"
4+
version = "v0.3.56"
55

66
if len(sys.argv) != 2:
77
print("Usage: python3 update_version.py <new_release>")

ipfs-api/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A command-line interface (CLI) for interacting with the IPFS API, providing func
55
To install the CLI, clone the repository and build the project using Go.= or dowload from existing release
66

77
```
8-
TOOLS_VERSION="v0.3.55" && rm -rfv /tmp/ipfs-api && \
8+
TOOLS_VERSION="v0.3.56" && rm -rfv /tmp/ipfs-api && \
99
safeWget /tmp/ipfs-api.deb "https://github.com/KiraCore/tools/releases/download/$TOOLS_VERSION/ipfs-api-$(getPlatform)-$(getArch).deb" "QmeqFDLGfwoWgCy2ZEFXerVC5XW8c5xgRyhK5bLArBr2ue" && \
1010
dpkg-deb -x /tmp/ipfs-api.deb /tmp/ipfs-api && cp -fv "/tmp/ipfs-api/bin/ipfs-api" /usr/local/bin/ipfs-api && chmod -v 755 /usr/local/bin/ipfs-api && \
1111
ipfs-api version

ipfs-api/types/constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package types
22

33
const (
4-
IpfsApiVersion = "v0.3.55"
4+
IpfsApiVersion = "v0.3.56"
55

66
// Pinata v1 constants
77
BASE_URL = "https://api.pinata.cloud"

scripts/version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
22

3-
echo "v0.3.55"
3+
echo "v0.3.56"

validator-key-gen/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Validator Key Generator is a CLI tool that generates validator keys, node keys,
55
### Setup from binary file
66

77
```bash
8-
TOOLS_VERSION="v0.3.55"
8+
TOOLS_VERSION="v0.3.56"
99

1010
# Quick-Install bash-utils or see root repository README file for secure download
1111
FILE_NAME="bash-utils.sh" && \

validator-key-gen/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
valkeygen "github.com/KiraCore/tools/validator-key-gen/ValKeyGen"
1010
)
1111

12-
const PrivValidatorKeyGenVersion = "v0.3.55"
12+
const PrivValidatorKeyGenVersion = "v0.3.56"
1313

1414
func main() {
1515

0 commit comments

Comments
 (0)