aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md16
-rw-r--r--src/cpt-lib2
2 files changed, 17 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2b89eaf..bbcec7d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,22 @@ this project _somewhat_ adheres to [Semantic Versioning].
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
+3.2.0 - 2020-08-22
+--------------------------------------------------------------------------------
+
+### Added
+- A `.build.cpt` file can be edited during the pre-build hook, so that a build
+ script can be modified. If the build is modified, a diff file will be
+ generated to the package database.
+- Some of the tools now use getopt. Since getopt isn't a POSIX utility,
+ util-linux implementation has been added to the `getopt-ul` directory. It
+ consists only of files required for the tool to be built.
+- Added `pre-chroot` hook for the `cpt-chbuild` utility.
+
+### Changed
+- `cpt-chbuild` now uses library functions such `sh256()`, and `as_root()`.
+
+
3.1.1 - 2020-08-11
--------------------------------------------------------------------------------
diff --git a/src/cpt-lib b/src/cpt-lib
index c6736b1..f95d409 100644
--- a/src/cpt-lib
+++ b/src/cpt-lib
@@ -8,7 +8,7 @@
# Currently maintained by Cem Keylan.
version() {
- log "Carbs Packaging Tools" 3.1.1
+ log "Carbs Packaging Tools" 3.2.0
exit 0
}