bump version to 2.0.3

This commit is contained in:
sijie.sun 2024-10-13 12:16:42 +08:00
parent d87a440c04
commit 861d658405
8 changed files with 13 additions and 12 deletions

View File

@ -21,7 +21,7 @@ on:
version: version:
description: 'Version for this release' description: 'Version for this release'
type: string type: string
default: 'v2.0.2' default: 'v2.0.3'
required: true required: true
make_latest: make_latest:
description: 'Mark this release as latest' description: 'Mark this release as latest'

4
Cargo.lock generated
View File

@ -1539,7 +1539,7 @@ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
[[package]] [[package]]
name = "easytier" name = "easytier"
version = "2.0.2" version = "2.0.3"
dependencies = [ dependencies = [
"aes-gcm", "aes-gcm",
"anyhow", "anyhow",
@ -1631,7 +1631,7 @@ dependencies = [
[[package]] [[package]]
name = "easytier-gui" name = "easytier-gui"
version = "2.0.2" version = "2.0.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"chrono", "chrono",

View File

@ -1,7 +1,7 @@
{ {
"name": "easytier-gui", "name": "easytier-gui",
"type": "module", "type": "module",
"version": "2.0.2", "version": "2.0.3",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "easytier-gui" name = "easytier-gui"
version = "2.0.2" version = "2.0.3"
description = "EasyTier GUI" description = "EasyTier GUI"
authors = ["you"] authors = ["you"]
edition = "2021" edition = "2021"

View File

@ -17,7 +17,7 @@
"createUpdaterArtifacts": false "createUpdaterArtifacts": false
}, },
"productName": "easytier-gui", "productName": "easytier-gui",
"version": "2.0.2", "version": "2.0.3",
"identifier": "com.kkrainbow.easytier", "identifier": "com.kkrainbow.easytier",
"plugins": {}, "plugins": {},
"app": { "app": {

View File

@ -3,7 +3,7 @@ name = "easytier"
description = "A full meshed p2p VPN, connecting all your devices in one network with one command." description = "A full meshed p2p VPN, connecting all your devices in one network with one command."
homepage = "https://github.com/EasyTier/EasyTier" homepage = "https://github.com/EasyTier/EasyTier"
repository = "https://github.com/EasyTier/EasyTier" repository = "https://github.com/EasyTier/EasyTier"
version = "2.0.2" version = "2.0.3"
edition = "2021" edition = "2021"
authors = ["kkrainbow"] authors = ["kkrainbow"]
keywords = ["vpn", "p2p", "network", "easytier"] keywords = ["vpn", "p2p", "network", "easytier"]

View File

@ -4,7 +4,7 @@ use std::{net::SocketAddr, sync::Mutex, time::Duration, vec};
use anyhow::{Context, Ok}; use anyhow::{Context, Ok};
use clap::{command, Args, Parser, Subcommand}; use clap::{command, Args, Parser, Subcommand};
use common::stun::StunInfoCollectorTrait; use common::{constants::EASYTIER_VERSION, stun::StunInfoCollectorTrait};
use proto::{ use proto::{
common::NatType, common::NatType,
peer_rpc::{GetGlobalPeerMapRequest, PeerCenterRpc, PeerCenterRpcClientFactory}, peer_rpc::{GetGlobalPeerMapRequest, PeerCenterRpc, PeerCenterRpcClientFactory},
@ -30,7 +30,7 @@ use humansize::format_size;
use tabled::settings::Style; use tabled::settings::Style;
#[derive(Parser, Debug)] #[derive(Parser, Debug)]
#[command(name = "easytier-cli", author, version, about, long_about = None)] #[command(name = "easytier-cli", author, version = EASYTIER_VERSION, about, long_about = None)]
struct Cli { struct Cli {
/// the instance name /// the instance name
#[arg(short = 'p', long, default_value = "127.0.0.1:15888")] #[arg(short = 'p', long, default_value = "127.0.0.1:15888")]

View File

@ -26,8 +26,9 @@ mod tunnel;
mod utils; mod utils;
mod vpn_portal; mod vpn_portal;
use common::config::{ use common::{
ConsoleLoggerConfig, FileLoggerConfig, NetworkIdentity, PeerConfig, VpnPortalConfig, config::{ConsoleLoggerConfig, FileLoggerConfig, NetworkIdentity, PeerConfig, VpnPortalConfig},
constants::EASYTIER_VERSION,
}; };
use instance::instance::Instance; use instance::instance::Instance;
use tokio::net::TcpSocket; use tokio::net::TcpSocket;
@ -49,7 +50,7 @@ use mimalloc_rust::*;
static GLOBAL_MIMALLOC: GlobalMiMalloc = GlobalMiMalloc; static GLOBAL_MIMALLOC: GlobalMiMalloc = GlobalMiMalloc;
#[derive(Parser, Debug)] #[derive(Parser, Debug)]
#[command(name = "easytier-core", author, version, about, long_about = None)] #[command(name = "easytier-core", author, version = EASYTIER_VERSION , about, long_about = None)]
struct Cli { struct Cli {
#[arg( #[arg(
short, short,