Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.

Commit 35b9473

Browse files
committed
bump version to 1.2.4
1 parent d0784a1 commit 35b9473

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{ pkgs ? import <nixpkgs> { } }:
22
pkgs.rustPlatform.buildRustPackage rec {
33
pname = "rce-engine";
4-
version = "1.2.3";
4+
version = "1.2.4";
55
cargoLock.lockFile = ./Cargo.lock;
66
src = pkgs.lib.cleanSource ./.;
77
}

docker.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ let
1414
in
1515
pkgs.dockerTools.buildImage {
1616
name = "toolkithub/rce-engine";
17-
tag = "1.2.3";
17+
tag = "1.2.4";
1818
created = "now";
1919

2020
config = {
@@ -51,7 +51,7 @@ pkgs.dockerTools.buildImage {
5151
Labels = {
5252
"org.opencontainers.image.authors" = "Success Kingsley <hello@xosnrdev.tech>";
5353
"org.opencontainers.image.source" = "https://github.com/toolkithub/rce-engine";
54-
"org.opencontainers.image.version" = "1.2.3";
54+
"org.opencontainers.image.version" = "1.2.4";
5555
"org.opencontainers.image.description" = "Docker-based engine for executing untrusted code in isolated containers.";
5656
};
5757
};

docs/install/ubuntu-22.04.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ usermod -aG docker rce
2828
```bash
2929
mkdir /home/rce/bin
3030
cd /home/rce/bin
31-
wget https://github.com/toolkithub/rce-engine/releases/download/v.1.2.3/rce-engine_linux-x64.tar.gz
31+
wget https://github.com/toolkithub/rce-engine/releases/download/v.1.2.4/rce-engine_linux-x64.tar.gz
3232
tar -zxf rce-engine_linux-x64.tar.gz
3333
rm rce-engine_linux-x64.tar.gz
3434
chown -R rce:rce /home/rce/bin

scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#+-------------------------------------------------------------------------------------------------------------------------------------+
44
# Author: Success Kingsley <hello@xosnrdev.tech>
55
# Last Updated: 2024-09-16
6-
# Version: 1.2.3
6+
# Version: 1.2.4
77
# License: MIT
88
# Description: This script installs the rce-engine on an Ubuntu 22.04 or latest machine.
99
# Usage: curl -fsSL https://raw.githubusercontent.com/toolkithub/rce-engine/main/scripts/install.sh -o install.sh \
@@ -75,7 +75,7 @@ sudo mkdir -p /home/rce/bin
7575
cd /home/rce/bin
7676

7777
log "Downloading rce-engine binary..."
78-
curl -LO https://github.com/toolkithub/rce-engine/releases/download/v1.2.3/rce-engine_linux-x64.tar.gz || error "Failed to download rce-engine binary"
78+
curl -LO https://github.com/toolkithub/rce-engine/releases/download/v1.2.4/rce-engine_linux-x64.tar.gz || error "Failed to download rce-engine binary"
7979

8080
log "Extracting rce-engine binary..."
8181
sudo tar -zxf rce-engine_linux-x64.tar.gz || error "Failed to extract rce-engine binary"

0 commit comments

Comments
 (0)