feat(mod_update): add @git.zone/tsrust to supported modules list

This commit is contained in:
2026-02-09 13:29:06 +00:00
parent 703cb25e2a
commit 72de264b0d
3 changed files with 7 additions and 1 deletions

View File

@@ -1,5 +1,10 @@
# Changelog # Changelog
## 2026-02-09 - 3.4.0 - feat(mod_update)
add @git.zone/tsrust to supported modules list
- ts/mod_update/index.ts: added '@git.zone/tsrust' to the modules array
## 2026-02-06 - 3.3.0 - feat(mod_update) ## 2026-02-06 - 3.3.0 - feat(mod_update)
add self-update flow, package name parser, dynamic CLI version, and tests add self-update flow, package name parser, dynamic CLI version, and tests

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tools', name: '@git.zone/tools',
version: '3.3.0', version: '3.4.0',
description: 'A CLI tool placeholder for development utilities.' description: 'A CLI tool placeholder for development utilities.'
} }

View File

@@ -15,6 +15,7 @@ const GITZONE_PACKAGES = [
'@git.zone/tsdocker', '@git.zone/tsdocker',
'@git.zone/tsview', '@git.zone/tsview',
'@git.zone/tswatch', '@git.zone/tswatch',
'@git.zone/tsrust',
]; ];
export interface IUpdateOptions { export interface IUpdateOptions {