Skip to content

Commit

Permalink
Merge branch 'latest' into release/v0.3.56
Browse files Browse the repository at this point in the history
  • Loading branch information
MrLutik authored May 2, 2024
2 parents c49d294 + 150885e commit e16e9b7
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 15 deletions.
17 changes: 3 additions & 14 deletions bash-utils/bash-utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ function bashUtilsVersion() {
# this is default installation script for utils
# ./bash-utils.sh bashUtilsSetup "/var/kiraglob"
function bashUtilsSetup() {


local BASH_UTILS_VERSION="v0.3.56"

local COSIGN_VERSION="v2.0.0"
if [ "$1" == "version" ] ; then
echo "$BASH_UTILS_VERSION"
Expand Down Expand Up @@ -2315,17 +2318,3 @@ if declare -f "$1" > /dev/null ; then
fi
















2 changes: 2 additions & 0 deletions bip39gen/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ import (
"github.com/spf13/cobra"
)


const Bip39GenVersion = "v0.3.56"


func cmdVersion(cmd *cobra.Command, args []string) error {
fmt.Println(Bip39GenVersion)
return nil
Expand Down
1 change: 1 addition & 0 deletions build-tools/update_version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import re
import sys


version = "v0.3.56"

if len(sys.argv) != 2:
Expand Down
3 changes: 2 additions & 1 deletion ipfs-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ A command-line interface (CLI) for interacting with the IPFS API, providing func
To install the CLI, clone the repository and build the project using Go.= or dowload from existing release

```
TOOLS_VERSION="v0.3.56" && rm -rfv /tmp/ipfs-api && \
TOOLS_VERSION="v0.3.56" && rm -rfv /tmp/ipfs-api && \
safeWget /tmp/ipfs-api.deb "https://github.com/KiraCore/tools/releases/download/$TOOLS_VERSION/ipfs-api-$(getPlatform)-$(getArch).deb" "QmeqFDLGfwoWgCy2ZEFXerVC5XW8c5xgRyhK5bLArBr2ue" && \
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 && \
ipfs-api version
Expand Down
3 changes: 3 additions & 0 deletions ipfs-api/types/constants.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
package types

const (

IpfsApiVersion = "v0.3.56"



// Pinata v1 constants
BASE_URL = "https://api.pinata.cloud"
PINFILE = "/pinning/pinFileToIPFS" // Pin file/directory
Expand Down
2 changes: 2 additions & 0 deletions scripts/version.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env bash


echo "v0.3.56"

3 changes: 3 additions & 0 deletions validator-key-gen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ Validator Key Generator is a CLI tool that generates validator keys, node keys,
### Setup from binary file

```bash

TOOLS_VERSION="v0.3.56"



# Quick-Install bash-utils or see root repository README file for secure download
FILE_NAME="bash-utils.sh" && \
wget "https://github.com/KiraCore/tools/releases/download/$TOOLS_VERSION/${FILE_NAME}" -O ./$FILE_NAME && \
Expand Down
3 changes: 3 additions & 0 deletions validator-key-gen/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ import (
valkeygen "github.com/KiraCore/tools/validator-key-gen/ValKeyGen"
)


const PrivValidatorKeyGenVersion = "v0.3.56"



func main() {

var (
Expand Down

0 comments on commit e16e9b7

Please sign in to comment.