From 63f1a5afb97cc11e6eddd90b9b65bce3fe104025 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ru=C5=BEi=C4=8Dka?= Date: Fri, 9 Jul 2021 13:35:27 +0200 Subject: [PATCH 1/2] docs: add site_url as mkdocs demands --- mkdocs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/mkdocs.yml b/mkdocs.yml index b6c4e9a..137aa3f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,4 +1,5 @@ site_name: apkg +site_url: https://pkg.labs.nic.cz/pages/apkg/ repo_url: https://gitlab.nic.cz/packaging/apkg edit_uri: "" nav: -- GitLab From fd91e558f41d1ace9c2355936354ff1de85eab1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ru=C5=BEi=C4=8Dka?= Date: Tue, 22 Jun 2021 12:57:13 +0200 Subject: [PATCH 2/2] docs: add news.md (changelog) --- CHANGELOG.md | 1 + docs/news.md | 36 ++++++++++++++++++++++++++++++++++++ mkdocs.yml | 1 + 3 files changed, 38 insertions(+) create mode 120000 CHANGELOG.md create mode 100644 docs/news.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 120000 index 0000000..5f7cb56 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1 @@ +docs/news.md \ No newline at end of file diff --git a/docs/news.md b/docs/news.md new file mode 100644 index 0000000..92acc94 --- /dev/null +++ b/docs/news.md @@ -0,0 +1,36 @@ +# apkg news + + +## apkg 0.2.0 (2021-07-??) + +### Improvements + +- support **Rocky Linux** through `rpm` pkgstyle +- support **Nix** through new `nix` pkgstyle +- align `apkg install` with other commands and extend functionality +- extend CI to test `apkg install` on supported distros +- extend CI with new integration tests against apkg itself to ensure full apkg + pipeline (including `install`) works on supported distros +- improve apkg archive creation script `make-archive.sh` +- remove problematic `htmllistparse` dependency in favor of using + `beautifulsoup4` directly + +### Fixes + +- handle unset `$PWD` when running external commands +- fail on unexpected input files in `srcpkg` +- fix docs build + +### Incompatible Changes ⚠ + +- `apkg install` now works on project source by default like other commands + (`srcpkg`, `build`). Old behavior of installing custom packages is available + through `-C`/`--custom-pkgs` option. +- `-i`/`--install-dep` option of `apkg build` was renamed to `-b`/`--build-dep` + to remove ambiguity. Old alias still works but it's deprecated an will be + removed in future versions. + + +## apkg 0.1.1 (2021-06-09) + +- first apkg beta release diff --git a/mkdocs.yml b/mkdocs.yml index 137aa3f..6a5e74b 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -5,6 +5,7 @@ edit_uri: "" nav: - index.md - intro.md + - news.md - install.md - guide.md - commands.md -- GitLab