Skip to content

Commit

Permalink
🎉 0.2.28
Browse files Browse the repository at this point in the history
  • Loading branch information
Reverier-Xu committed Sep 17, 2024
1 parent a2a8063 commit 742ed4d
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

env:
APP_NAME: "WebSocketReflectorX"
APP_VERSION: "0.2.27"
APP_VERSION: "0.2.28"

#-------------------------------------------------------------------------------
# Workflow jobs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:

env:
APP_NAME: "WebSocketReflectorX"
APP_VERSION: "0.2.27"
APP_VERSION: "0.2.28"
QT_VERSION: "6.7.1"

#-------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

env:
APP_NAME: "WebSocketReflectorX"
APP_VERSION: "0.2.27"
APP_VERSION: "0.2.28"
QT_VERSION: "6.7.1"

#-------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.20)

set(VERSION_MAJOR 0)
set(VERSION_MINOR 2)
set(VERSION_PATCH 27)
set(VERSION_PATCH 28)

execute_process(
COMMAND git describe --always --dirty
Expand Down
2 changes: 1 addition & 1 deletion deploy_linux.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

export APP_NAME="WebSocketReflectorX"
export APP_VERSION=0.2.27
export APP_VERSION=0.2.28
export GIT_VERSION=$(git rev-parse --short HEAD)

echo "> $APP_NAME packager (Linux x86_64) [v$APP_VERSION]"
Expand Down
2 changes: 1 addition & 1 deletion deploy_macos.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

export APP_NAME="WebSocketReflectorX"
export APP_VERSION=0.2.27
export APP_VERSION=0.2.28
export GIT_VERSION=$(git rev-parse --short HEAD)

echo "> $APP_NAME packager (macOS x86_64) [v$APP_VERSION]"
Expand Down
2 changes: 1 addition & 1 deletion deploy_windows.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

export APP_NAME="WebSocketReflectorX"
export APP_VERSION=0.2.27
export APP_VERSION=0.2.28
export GIT_VERSION=$(git rev-parse --short HEAD)

echo "> $APP_NAME packager (Windows x86_64) [v$APP_VERSION]"
Expand Down
2 changes: 1 addition & 1 deletion windows/setup.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Unicode True
!define DESCRIPTION "Controlled TCP-over-WebSocket forwarding tunnel."
!define VERSIONMAJOR 0
!define VERSIONMINOR 2
!define VERSIONBUILD 27
!define VERSIONBUILD 28
!define INSTALL_DIR_DEFAULT "$PROGRAMFILES64\${APPNAME}"
!define MUI_ABORTWARNING
!define MUI_FINISHPAGE_RUN
Expand Down
12 changes: 6 additions & 6 deletions wsrx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wsrx"
version = "0.2.27"
version = "0.2.28"
edition = "2021"
authors = ["Reverier-Xu <reverier.xu@xdsec.club>"]
description = "Controlled TCP-over-WebSocket forwarding tunnel."
Expand Down Expand Up @@ -67,27 +67,27 @@ chrono = { version = "0.4", optional = true }
disabled-strategies = ["quick-install", "compile"]

[package.metadata.binstall.overrides.x86_64-unknown-linux-gnu]
pkg-url = "{ repo }/releases/download/{ version }/{ pkg }-cli-{ version }-linux64-gnu{ archive-suffix }"
pkg-url = "{ repo }/releases/download/{ version }/{ name }-cli-{ version }-linux64-gnu{ archive-suffix }"
pkg-fmt = "tgz"
bin-dir = "{ bin }"


[package.metadata.binstall.overrides.x86_64-unknown-linux-musl]
pkg-url = "{ repo }/releases/download/{ version }/{ pkg }-cli-{ version }-linux64-musl{ archive-suffix }"
pkg-url = "{ repo }/releases/download/{ version }/{ name }-cli-{ version }-linux64-musl{ archive-suffix }"
pkg-fmt = "tgz"
bin-dir = "{ bin }"

[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/{ version }/{ pkg }-cli-{ version }-win64{ archive-suffix }"
pkg-url = "{ repo }/releases/download/{ version }/{ name }-cli-{ version }-win64{ archive-suffix }"
pkg-ext = "zip"
bin-dir = "target/release/{ bin }.exe"

[package.metadata.binstall.overrides.aarch64-apple-darwin]
pkg-url = "{ repo }/releases/download/{ version }/{ pkg }-cli-{ version }-macOS-arm64{ archive-suffix }"
pkg-url = "{ repo }/releases/download/{ version }/{ name }-cli-{ version }-macOS-arm64{ archive-suffix }"
pkg-ext = "zip"
bin-dir = "target/release/{ bin }"

[package.metadata.binstall.overrides.x86_64-apple-darwin]
pkg-url = "{ repo }/releases/download/{ version }/{ pkg }-cli-{ version }-macOS-x86_64{ archive-suffix }"
pkg-url = "{ repo }/releases/download/{ version }/{ name }-cli-{ version }-macOS-x86_64{ archive-suffix }"
pkg-ext = "zip"
bin-dir = "target/release/{ bin }"

0 comments on commit 742ed4d

Please sign in to comment.