diff options
author | merakor <cem@ckyln.com> | 2020-08-21 21:01:30 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-08-21 21:01:30 +0000 |
commit | 55e42949a4ac28695fbd6883025bb33842c1bacd (patch) | |
tree | 36db267298042c93fb16e15f09a02bbfbe907539 | |
parent | 1099303cfe176b8374ff732579b2175b96209110 (diff) | |
download | cpt-55e42949a4ac28695fbd6883025bb33842c1bacd.tar.gz |
cpt: bump to 3.2.03.2.0
FossilOrigin-Name: 62af72a163c339a649500bd169c08b822ec2555507cca210150e8a4378efac58
-rw-r--r-- | CHANGELOG.md | 16 | ||||
-rw-r--r-- | src/cpt-lib | 2 |
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 } |