Skip to content

Commit 59c97f7

Browse files
committed
CHANGELOG.md, *: bump version
1 parent feb1d2d commit 59c97f7

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
66

77
Also, at the bottom of this file there is a [TODO list](#todo) with planned future changes.
88

9+
## [v2.0.0] - 2025-03-30
10+
11+
### Added
12+
13+
- Introduced `backup`, `backup-apks`, and `restore-apks` subcommands.
14+
15+
I.e. `hoardy-adb` gained a front-end to the `adb` utility, inspired by [Adebar](https://codeberg.org/izzy/Adebar).
16+
17+
### Changed
18+
19+
- Reworked most of the internals and switched to using `kisstdlib`.
20+
21+
This makes the code much smaller and produces a nicer TTY UI.
22+
23+
- Improved documentation.
24+
925
## [v1.2.0] - 2025-01-22
1026

1127
### Changed
@@ -54,6 +70,7 @@ Also, at the bottom of this file there is a [TODO list](#todo) with planned futu
5470

5571
- Initial public release.
5672

73+
[v2.0.0]: https://github.com/Own-Data-Privateer/hoardy-adb/compare/v1.2.0...v2.0.0
5774
[v1.2.0]: https://github.com/Own-Data-Privateer/hoardy-adb/compare/v1.1.3...v1.2.0
5875
[v1.1.3]: https://github.com/Own-Data-Privateer/hoardy-adb/compare/v1.1.2...v1.1.3
5976
[v1.1.2]: https://github.com/Own-Data-Privateer/hoardy-adb/compare/v1.1.1...v1.1.2

default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ with pkgs.python3Packages;
88

99
buildPythonApplication (rec {
1010
pname = "hoardy-adb";
11-
version = "1.2.0";
11+
version = "2.0.0";
1212
format = "pyproject";
1313

1414
src = lib.cleanSourceWith {

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
packages = ["hoardy_adb"]
66
[project]
77
name = "hoardy-adb"
8-
version = "1.2.0"
8+
version = "2.0.0"
99
authors = [{ name = "Jan Malakhovski", email = "[email protected]" }]
1010
description = "A simple front-end for `adb` and a tool that can list contens of, unpack, and convert Android Backup files to TAR files and back, decrypt, encrypt, split them into by-app pieces, etc. Android Backup files are `backup.ab`, `*.ab`, `*.adb`, and similarly named files produced by `adb shell bu backup`, `adb backup`, `bmgr`, and similar tools."
1111
readme = "README.md"

0 commit comments

Comments
 (0)