Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 31 additions & 8 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,10 +1,33 @@
bssh (0.3.0-1~jammy1) jammy; urgency=medium
bssh (0.6.1-1~jammy1) jammy; urgency=medium

* Initial Debian packaging
* Add native SFTP directory operations and recursive file transfer support
* Modern UI with semantic colors and Unicode symbols
* Full XDG Base Directory specification compliance
* Backend.AI multi-node session auto-detection
* Multiple authentication methods support
* v0.6.1
### New Features
None

### Improvements
- **Branding Update**: Rebranded from 'Backend.AI SSH' to 'Broadcast SSH' to better reflect the tool's core functionality of broadcast/parallel command execution
- **Documentation**: Updated all help text, manpages, and package descriptions with the new branding

### Bug Fixes
None

### CI/CD Improvements
None

### Technical Details
- Maintained Backend.AI project association in documentation while emphasizing the tool's broader utility
- Updated project branding across CLI help output, UI banners, man pages, and Debian package metadata

### Dependencies
None

### Breaking Changes
None

### Known Issues
None

**Full Changelog**: https://github.com/lablup/bssh/compare/v0.6.0...v0.6.1

-- Jeongkyu Shin <inureyes@gmail.com> Thu, 28 Aug 2025 13:57:13 +0900

-- Jeongkyu Shin <inureyes@gmail.com> Fri, 22 Aug 2025 22:59:16 +0900
10 changes: 8 additions & 2 deletions debian/update-changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,13 @@ for TAG in "${TAGS[@]}"; do
BODY=$(echo "$rel_json" | jq -r '.body')

# Debian date format
FORMATTED_DATE=$(date -d "$DATE" "+%a, %d %b %Y %H:%M:%S %z")
if date --version >/dev/null 2>&1; then
# GNU date (Linux)
FORMATTED_DATE=$(date -d "$DATE" "+%a, %d %b %Y %H:%M:%S %z")
else
# BSD date (macOS)
FORMATTED_DATE=$(date -j -f "%Y-%m-%dT%H:%M:%SZ" "$DATE" "+%a, %d %b %Y %H:%M:%S %z")
fi

# Determine version suffix
if [[ "$AUTO_INCREMENT" == "true" ]]; then
Expand Down Expand Up @@ -85,4 +91,4 @@ EOF
done

mv debian/changelog.tmp debian/changelog
echo "✅ debian/changelog updated for: ${TAGS[*]}"
echo "✅ debian/changelog updated for: ${TAGS[*]}"