From cd98af662e285edf0febdd92381aeb252d3222e7 Mon Sep 17 00:00:00 2001 From: Wolfgang Hoschek Date: Sat, 4 Jan 2025 15:09:59 +0100 Subject: [PATCH] [build] prep for release Signed-off-by: Wolfgang Hoschek --- .github/workflows/python-app.yml | 4 ++-- CHANGELOG.md | 14 ++++++++++---- bzfs/bzfs.py | 2 +- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index b9b3ecfc..38217907 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -20,9 +20,9 @@ name: Tests on: push: - branches: [ "main", "branch-1.8.x", "branch-1.7.x", "branch-1.6.x", "branch-1.5.x", "branch-1.4.x", "branch-1.3.x" ] + branches: [ "main", "branch-1.10.x", "branch-1.9.x", "branch-1.8.x", "branch-1.7.x", "branch-1.6.x" ] pull_request: - branches: [ "main", "branch-1.8.x", "branch-1.7.x", "branch-1.6.x", "branch-1.5.x", "branch-1.4.x", "branch-1.3.x" ] + branches: [ "main", "branch-1.10.x", "branch-1.9.x", "branch-1.8.x", "branch-1.7.x", "branch-1.6.x" ] workflow_dispatch: inputs: name: diff --git a/CHANGELOG.md b/CHANGELOG.md index 63d95563..6fbb7e52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,16 @@ # Changelog -All notable changes to bzfs will be documented in this file. -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.8.0] - TBD +## [1.8.0] - January 4, 2025 + +This release contains performance and documentation enhancements as well as new features, including ... +- Substantially improved SSH connection latency +- Improved latency in local mode +- Parse pv log file correctly even if a locale specific number contains a "," instead of a "." as decimal point +- Use more human-readable formatting for durations and bytes transferred. +- Also run nightly tests on FreeBSD-14.2 +- For the full list of changes, see https://github.com/whoschek/bzfs/compare/v1.7.0...v1.8.0 ## [1.7.0] - December 23, 2024 diff --git a/bzfs/bzfs.py b/bzfs/bzfs.py index 1b741379..bb8d0db0 100755 --- a/bzfs/bzfs.py +++ b/bzfs/bzfs.py @@ -77,7 +77,7 @@ from typing import Iterable, Deque, Dict, List, Set, Tuple, Any, Callable, Generator, Generic, ItemsView, Optional from typing import TypeVar, Union -__version__ = "1.8.0-dev" +__version__ = "1.8.0" prog_name = "bzfs" prog_author = "Wolfgang Hoschek" die_status = 3