Skip to content

Commit e16e9b7

Browse files
authored
Merge branch 'latest' into release/v0.3.56
2 parents c49d294 + 150885e commit e16e9b7

File tree

8 files changed

+19
-15
lines changed

8 files changed

+19
-15
lines changed

bash-utils/bash-utils.sh

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ function bashUtilsVersion() {
2626
# this is default installation script for utils
2727
# ./bash-utils.sh bashUtilsSetup "/var/kiraglob"
2828
function bashUtilsSetup() {
29+
30+
2931
local BASH_UTILS_VERSION="v0.3.56"
32+
3033
local COSIGN_VERSION="v2.0.0"
3134
if [ "$1" == "version" ] ; then
3235
echo "$BASH_UTILS_VERSION"
@@ -2315,17 +2318,3 @@ if declare -f "$1" > /dev/null ; then
23152318
fi
23162319

23172320

2318-
2319-
2320-
2321-
2322-
2323-
2324-
2325-
2326-
2327-
2328-
2329-
2330-
2331-

bip39gen/cmd/version.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ import (
66
"github.com/spf13/cobra"
77
)
88

9+
910
const Bip39GenVersion = "v0.3.56"
1011

12+
1113
func cmdVersion(cmd *cobra.Command, args []string) error {
1214
fmt.Println(Bip39GenVersion)
1315
return nil

build-tools/update_version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import re
22
import sys
33

4+
45
version = "v0.3.56"
56

67
if len(sys.argv) != 2:

ipfs-api/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ 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.56" && rm -rfv /tmp/ipfs-api && \
8+
TOOLS_VERSION="v0.3.56" && rm -rfv /tmp/ipfs-api && \
9+
910
safeWget /tmp/ipfs-api.deb "https://github.com/KiraCore/tools/releases/download/$TOOLS_VERSION/ipfs-api-$(getPlatform)-$(getArch).deb" "QmeqFDLGfwoWgCy2ZEFXerVC5XW8c5xgRyhK5bLArBr2ue" && \
1011
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 && \
1112
ipfs-api version

ipfs-api/types/constants.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
package types
22

33
const (
4+
45
IpfsApiVersion = "v0.3.56"
56

7+
8+
69
// Pinata v1 constants
710
BASE_URL = "https://api.pinata.cloud"
811
PINFILE = "/pinning/pinFileToIPFS" // Pin file/directory

scripts/version.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
#!/usr/bin/env bash
22

3+
34
echo "v0.3.56"
5+

validator-key-gen/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ Validator Key Generator is a CLI tool that generates validator keys, node keys,
55
### Setup from binary file
66

77
```bash
8+
89
TOOLS_VERSION="v0.3.56"
910

11+
12+
1013
# Quick-Install bash-utils or see root repository README file for secure download
1114
FILE_NAME="bash-utils.sh" && \
1215
wget "https://github.com/KiraCore/tools/releases/download/$TOOLS_VERSION/${FILE_NAME}" -O ./$FILE_NAME && \

validator-key-gen/main.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ import (
99
valkeygen "github.com/KiraCore/tools/validator-key-gen/ValKeyGen"
1010
)
1111

12+
1213
const PrivValidatorKeyGenVersion = "v0.3.56"
1314

15+
16+
1417
func main() {
1518

1619
var (

0 commit comments

Comments
 (0)