From ae1540449634b3cbd89531710c3a553caa920639 Mon Sep 17 00:00:00 2001 From: Draco-Lunaris-Echo Date: Sun, 7 Jun 2026 12:58:53 -0500 Subject: [PATCH] chore: bump version to 1.0.0 --- Cargo.toml | 2 +- debian/changelog | 6 ++++++ frontend/package.json | 2 +- scripts/build-package.sh | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ab872c1..05ee7c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ ] [workspace.package] -version = "0.2.4" +version = "1.0.0" edition = "2021" authors = ["Echo "] license = "MIT" diff --git a/debian/changelog b/debian/changelog index ea100dc..15c2275 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +linux-patch-manager (1.0.0-1) unstable; urgency=low + + * Release v1.0.0 + + -- git-echo Sun, 07 Jun 2026 12:58:46 -0500 + linux-patch-manager (0.1.9-1) noble; urgency=medium * Fix: Replace broken DashMap rate limiting with tower-governor middleware diff --git a/frontend/package.json b/frontend/package.json index 31a4900..86235ba 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,7 +1,7 @@ { "name": "patch-manager-ui", "private": true, - "version": "0.1.7", + "version": "1.0.0", "type": "module", "scripts": { "dev": "vite", diff --git a/scripts/build-package.sh b/scripts/build-package.sh index 64afc24..2b415be 100755 --- a/scripts/build-package.sh +++ b/scripts/build-package.sh @@ -22,7 +22,7 @@ warn() { echo -e "${YELLOW}[WARN]${NC} $*"; } error() { echo -e "${RED}[ERROR]${NC} $*" >&2; exit 1; } PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" -VERSION="0.1.9" +VERSION="1.0.0" RELEASE="1" PKG_NAME="linux-patch-manager" DEB_NAME="${PKG_NAME}_${VERSION}-${RELEASE}_amd64.deb"