diff options
author | merakor <cem@ckyln.com> | 2020-08-07 11:38:51 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-08-07 11:38:51 +0000 |
commit | 5ca5c3e83ea7e02b9d5b160ecfc7510549691deb (patch) | |
tree | 146db481a51d748a5f526d62781f9a430a98d695 | |
parent | 03ada986759549070f55bc6e80d34322f7260db3 (diff) | |
download | cpt-5ca5c3e83ea7e02b9d5b160ecfc7510549691deb.tar.gz |
cpt: bump to 3.1.03.1.0
FossilOrigin-Name: 1498d4b1296a9f74455d78fa32e794702a0dbc91d17d761f4a7e04e5fcc1cb36
-rw-r--r-- | CHANGELOG.md | 10 | ||||
-rw-r--r-- | src/cpt-lib | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 08177bf..cbd46c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,16 @@ this project _somewhat_ adheres to [Semantic Versioning]. [Semantic Versioning]: https://semver.org/spec/v2.0.0.html +3.1.0 - 2020-08-07 +-------------------------------------------------------------------------------- + +### Changed +- `cpt-lib` no longer creates temporary directories. This will need manual + adjustments for scripts that make use of the cache directories. Those + directories can now be created by calling the `create_cache()` function. +- Dropping libtool's `*.la` library files from packages. + + 3.0.0 - 2020-07-24 -------------------------------------------------------------------------------- diff --git a/src/cpt-lib b/src/cpt-lib index 70cf547..3218fab 100644 --- a/src/cpt-lib +++ b/src/cpt-lib @@ -8,7 +8,7 @@ # Currently maintained by Cem Keylan. version() { - log "Carbs Packaging Tools" 3.0.0 + log "Carbs Packaging Tools" 3.1.0 exit 0 } |