Skip to content

Commit

Permalink
Merge pull request #265 from KiraCore/release/v0.3.46
Browse files Browse the repository at this point in the history
  • Loading branch information
asmodat authored Apr 23, 2023
2 parents 6f4ced3 + e04792a commit 2cb94fb
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 12 deletions.
5 changes: 1 addition & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
Features:
* bip39gen: add integration test
* bip39gen: deprecate chacha20
* bip39gen: fix bugs
* bip39gen: refactor prefix logic
* bu: add curl check
8 changes: 7 additions & 1 deletion bash-utils/bash-utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function bashUtilsVersion() {
# this is default installation script for utils
# ./bash-utils.sh bashUtilsSetup "/var/kiraglob"
function bashUtilsSetup() {
local BASH_UTILS_VERSION="v0.3.45"
local BASH_UTILS_VERSION="v0.3.46"
local COSIGN_VERSION="v2.0.0"
if [ "$1" == "version" ] ; then
echo "$BASH_UTILS_VERSION"
Expand Down Expand Up @@ -763,6 +763,11 @@ function safeWget() {
return 1
fi

if (! $(isCommand curl)) ; then
echoINFO "INFO: Curl not installed. Installing..."
apt-get install curl -y || ( echoErr "Failed to install curl, missing dependency" && exit 1 )
fi

if (! $(isSHA256 "$EXPECTED_HASH_FIRST")) ; then
if ($(isCID "$EXPECTED_HASH_FIRST")) ; then
echoInfo "INFO: Detected IPFS CID, searching available gatewys..."
Expand Down Expand Up @@ -2316,3 +2321,4 @@ fi




2 changes: 1 addition & 1 deletion bip39gen/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/spf13/cobra"
)

const Bip39GenVersion = "v0.3.45"
const Bip39GenVersion = "v0.3.46"

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

version = "v0.3.45"
version = "v0.3.46"

if len(sys.argv) != 2:
print("Usage: python3 update_version.py <new_release>")
Expand Down
2 changes: 1 addition & 1 deletion ipfs-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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.45" && rm -rfv /tmp/ipfs-api && \
TOOLS_VERSION="v0.3.46" && 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
2 changes: 1 addition & 1 deletion ipfs-api/types/constants.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package types

const (
IpfsApiVersion = "v0.3.45"
IpfsApiVersion = "v0.3.46"

// Pinata v1 constants
BASE_URL = "https://api.pinata.cloud"
Expand Down
2 changes: 1 addition & 1 deletion scripts/version.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

echo "v0.3.45"
echo "v0.3.46"
2 changes: 1 addition & 1 deletion validator-key-gen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Validator Key Generator is a CLI tool that generates validator keys, node keys,
### Setup from binary file

```bash
TOOLS_VERSION="v0.3.45"
TOOLS_VERSION="v0.3.46"

# Quick-Install bash-utils or see root repository README file for secure download
FILE_NAME="bash-utils.sh" && \
Expand Down
2 changes: 1 addition & 1 deletion validator-key-gen/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/tendermint/tendermint/privval"
)

const PrivValidatorKeyGenVersion = "v0.3.45"
const PrivValidatorKeyGenVersion = "v0.3.46"

type Prefix struct {
fullPath *hd.BIP44Params
Expand Down

0 comments on commit 2cb94fb

Please sign in to comment.