Compare commits

..

4 Commits

Author SHA1 Message Date
github-actions[bot]
c5267f6087 chore: release v16.2.1 (#1462)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-11-10 20:07:08 +01:00
Gideon
d80e8f64d1 fix(release): Use bash in Windows to fix powershell issues (#1461) 2025-11-10 19:18:51 +01:00
Gideon
c6f2e0cc44 fix(release): Fix .deb distribution (#1460) 2025-11-10 19:18:29 +01:00
Gideon
99c3e8af26 fix(release): Fix .deb distribution (#1458) 2025-11-10 18:47:55 +01:00
4 changed files with 17 additions and 4 deletions

View File

@@ -8,6 +8,10 @@ permissions:
# Write permissions to call the repository dispatch
contents: write
defaults:
run:
shell: bash
jobs:
# Publish release files for CD native environments
native_build:
@@ -71,9 +75,10 @@ jobs:
mkdir -p "$dir"
echo "DEPLOY_DIR=$dir" >> $GITHUB_ENV
- name: Generate shell completions
- name: Generate man page and shell completions
shell: bash
run: |
"$BIN" --gen-manpage > "$DEPLOY_DIR/topgrade.1"
"$BIN" --gen-completion bash > "$DEPLOY_DIR/topgrade.bash"
"$BIN" --gen-completion fish > "$DEPLOY_DIR/topgrade.fish"
"$BIN" --gen-completion zsh > "$DEPLOY_DIR/_topgrade"
@@ -267,7 +272,7 @@ jobs:
- name: Move Debian-based system package
run: |
mkdir -p assets
mv "target/${matrix_target}/debian/*.deb" assets
mv target/"${matrix_target}"/debian/*.deb assets
if: ${{ matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'armv7-unknown-linux-gnueabihf' }}
shell: bash

View File

@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [16.2.1](https://github.com/topgrade-rs/topgrade/compare/v16.2.0...v16.2.1) - 2025-11-10
### Fixed
- *(release)* Use bash in Windows to fix powershell issues ([#1461](https://github.com/topgrade-rs/topgrade/pull/1461))
- *(release)* Fix .deb distribution ([#1460](https://github.com/topgrade-rs/topgrade/pull/1460))
- *(release)* Fix .deb distribution ([#1458](https://github.com/topgrade-rs/topgrade/pull/1458))
## [16.2.0](https://github.com/topgrade-rs/topgrade/compare/v16.1.2...v16.2.0) - 2025-11-10
### Added

2
Cargo.lock generated
View File

@@ -2917,7 +2917,7 @@ dependencies = [
[[package]]
name = "topgrade"
version = "16.2.0"
version = "16.2.1"
dependencies = [
"cfg-if",
"chrono",

View File

@@ -6,7 +6,7 @@ keywords = ["upgrade", "update"]
license = "GPL-3.0"
repository = "https://github.com/topgrade-rs/topgrade"
rust-version = "1.84.1"
version = "16.2.0"
version = "16.2.1"
authors = ["Roey Darwish Dror <roey.ghost@gmail.com>", "Thomas Schönauer <t.schoenauer@hgs-wt.at>"]
exclude = ["doc/screenshot.gif", "BREAKINGCHANGES_dev.md"]
edition = "2021"