aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormerakor <cem@ckyln.com>2020-08-31 14:22:25 +0000
committermerakor <cem@ckyln.com>2020-08-31 14:22:25 +0000
commit53251fa6c192e58c233b667bce432528f3014438 (patch)
treedcb9cc1269737505da8c457846ef11b1fd9dd671
parent81bdb80195f2af27490ff64891a549582f07732f (diff)
downloadcpt-53251fa6c192e58c233b667bce432528f3014438.tar.gz
cpt: bump version to 3.3.03.3.0
FossilOrigin-Name: 75617b8acbf3e5074ad60d2a4c1bd6b3d0c58b37bb471c8166fd2a75a0a30453
-rw-r--r--CHANGELOG.md15
-rw-r--r--src/cpt-lib2
2 files changed, 16 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e5bee98..7bae8d4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,21 @@ this project _somewhat_ adheres to [Semantic Versioning].
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
+3.3.0 - 2020-08-22
+--------------------------------------------------------------------------------
+
+### Added
+- Added `trap_set()` in order to manage traps.
+
+### Changed
+- Moved from `getopt` to a shell implementation of option parsing. This ensures
+ portability, and doesn't depend on a C program with GNU extensions. That was
+ a mistake. The new implementation is taken from the public domain library,
+ `getoptions`.
+- `warn()` function was modified to use `log "$1" "$2" "${3:-WARNING}"` instead.
+- Made `cpt` checksum method compatible with the KISS Community repository.
+
+
3.2.0 - 2020-08-22
--------------------------------------------------------------------------------
diff --git a/src/cpt-lib b/src/cpt-lib
index 3f6df23..4b05049 100644
--- a/src/cpt-lib
+++ b/src/cpt-lib
@@ -8,7 +8,7 @@
# Currently maintained by Cem Keylan.
version() {
- log "Carbs Packaging Tools" 3.2.0
+ log "Carbs Packaging Tools" 3.3.0
exit 0
}