Skip to content

Commit 2cb94fb

Browse files
authored
Merge pull request #265 from KiraCore/release/v0.3.46
2 parents 6f4ced3 + e04792a commit 2cb94fb

File tree

9 files changed

+15
-12
lines changed

9 files changed

+15
-12
lines changed

RELEASE.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
Features:
2-
* bip39gen: add integration test
3-
* bip39gen: deprecate chacha20
4-
* bip39gen: fix bugs
5-
* bip39gen: refactor prefix logic
2+
* bu: add curl check

bash-utils/bash-utils.sh

+7-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.45"
29+
local BASH_UTILS_VERSION="v0.3.46"
3030
local COSIGN_VERSION="v2.0.0"
3131
if [ "$1" == "version" ] ; then
3232
echo "$BASH_UTILS_VERSION"
@@ -763,6 +763,11 @@ function safeWget() {
763763
return 1
764764
fi
765765

766+
if (! $(isCommand curl)) ; then
767+
echoINFO "INFO: Curl not installed. Installing..."
768+
apt-get install curl -y || ( echoErr "Failed to install curl, missing dependency" && exit 1 )
769+
fi
770+
766771
if (! $(isSHA256 "$EXPECTED_HASH_FIRST")) ; then
767772
if ($(isCID "$EXPECTED_HASH_FIRST")) ; then
768773
echoInfo "INFO: Detected IPFS CID, searching available gatewys..."
@@ -2316,3 +2321,4 @@ fi
23162321

23172322

23182323

2324+

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.45"
9+
const Bip39GenVersion = "v0.3.46"
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.45"
4+
version = "v0.3.46"
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.45" && rm -rfv /tmp/ipfs-api && \
8+
TOOLS_VERSION="v0.3.46" && 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.45"
4+
IpfsApiVersion = "v0.3.46"
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.45"
3+
echo "v0.3.46"

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.45"
8+
TOOLS_VERSION="v0.3.46"
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
@@ -18,7 +18,7 @@ import (
1818
"github.com/tendermint/tendermint/privval"
1919
)
2020

21-
const PrivValidatorKeyGenVersion = "v0.3.45"
21+
const PrivValidatorKeyGenVersion = "v0.3.46"
2222

2323
type Prefix struct {
2424
fullPath *hd.BIP44Params

0 commit comments

Comments
 (0)