Skip to content

Commit

Permalink
chore(package version): updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 30, 2024
1 parent aa1d43d commit e653f1c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cryptlex/lexactivator",
"version": "3.30.0",
"version": "3.30.1",
"description": "LexActivator API wrapper for Node.js.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-linux-arm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ trap 'echo "\"${last_command}\" finished with exit code $?."' EXIT
source ~/.bashrc

URL="https://dl.cryptlex.com/downloads/"
VERSION="v3.30.0";
VERSION="v3.30.1";
wget ${URL}${VERSION}/LexActivator-Static-Linux.zip
mkdir -p ./tmp/linux
unzip -o LexActivator-Static-Linux.zip -d ./tmp/linux
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-linux-musl.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

URL="https://dl.cryptlex.com/downloads/"
VERSION="v3.30.0";
VERSION="v3.30.1";
wget ${URL}${VERSION}/LexActivator-Static-Linux.zip
mkdir -p ./tmp/linux
unzip -o LexActivator-Static-Linux.zip -d ./tmp/linux
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG
trap 'echo "\"${last_command}\" finished with exit code $?."' EXIT
source ~/.bashrc
URL="https://dl.cryptlex.com/downloads/"
VERSION="v3.30.0";
VERSION="v3.30.1";
wget ${URL}${VERSION}/LexActivator-Static-Linux.zip
mkdir -p ./tmp/linux
unzip -o LexActivator-Static-Linux.zip -d ./tmp/linux
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG
trap 'echo "\"${last_command}\" finished with exit code $?."' EXIT

URL="https://dl.cryptlex.com/downloads/"
VERSION="v3.30.0";
VERSION="v3.30.1";
curl ${URL}${VERSION}/LexActivator-Static-Mac.zip -o LexActivator-Static-Mac.zip
mkdir -p ./tmp/macos
unzip -o LexActivator-Static-Mac.zip -d ./tmp/macos
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-windows.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$base_url = "https://dl.cryptlex.com/downloads"
$lexactivator_version ="v3.30.0"
$lexactivator_version ="v3.30.1"

New-Item -Path ".\tmp\windows" -ItemType Directory
$url = "$base_url/$lexactivator_version/LexActivator-Win.zip"
Expand Down

0 comments on commit e653f1c

Please sign in to comment.