diff options
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | src/cpt-lib | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b128d88..2352f33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ this project _somewhat_ adheres to [Semantic Versioning]. [Semantic Versioning]: https://semver.org/spec/v2.0.0.html -UNRELEASED +5.0.0 - 2020-10-06 -------------------------------------------------------------------------------- ### IMPORTANT @@ -33,6 +33,8 @@ UNRELEASED - `cpt-fork` now removes `manifest` and `etcsums` files. - `cpt-fork` can now be used to fork multiple packages. - `cpt-reset` now uses `/etc/cpt-base` when removing packages. +- `cpt-build` now exports the `CPT_TEST` variable, so some tests that can't be + done in a `test` script can be done from the build itself. 4.1.1 - 2020-09-25 diff --git a/src/cpt-lib b/src/cpt-lib index 27e8c4d..7f6b6e2 100644 --- a/src/cpt-lib +++ b/src/cpt-lib @@ -8,7 +8,7 @@ # Currently maintained by Cem Keylan. version() { - log "Carbs Packaging Tools" 4.1.1 + log "Carbs Packaging Tools" 5.0.0 exit 0 } |