Skip to content

Commit 3aa2484

Browse files
authored
Merge pull request #38 from Cyber-Syntax:refactor
fix: update backup retention comments and version to 0.6.3-beta
2 parents 25bf607 + c8e4461 commit 3aa2484

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22
All notable changes to this project will be documented in this file. Commits automatically generated by github actions.
33

4+
## v0.6.3-beta
45
## v0.6.2-beta
56
## v0.6.1-beta
67
## v0.6.0-beta

autotarcompress/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,12 +153,12 @@ def save(self) -> None:
153153
f.write(f"config_dir = {self.config_dir}\n\n")
154154

155155
# keep_backup
156-
f.write("# Number of unencrypted backups to keep (0 = unlimited).\n")
156+
f.write("# Number of unencrypted backups to keep (0 = disable backup).\n")
157157
f.write("# Useful for retention policy and disk space management.\n")
158158
f.write(f"keep_backup = {self.keep_backup}\n\n")
159159

160160
# keep_enc_backup
161-
f.write("# Number of encrypted backups to keep (0 = unlimited).\n")
161+
f.write("# Number of encrypted backups to keep (0 = disable backup).\n")
162162
f.write("# Applies to encrypted backup retention.\n")
163163
f.write(f"keep_enc_backup = {self.keep_enc_backup}\n\n")
164164

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = 'AutoTarCompress'
3-
version = '0.6.2-beta'
3+
version = '0.6.3-beta'
44
description = 'It downloads/updates appimages via GitHub API. It also validates the appimage with SHA256 and SHA512.'
55
requires-python = ">= 3.8"
66
dependencies = [

0 commit comments

Comments
 (0)