Signed-off-by: Johannes Löthberg <johannes@kyriasis.com> --- CHANGES.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 59c4639..8300ad2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,7 +4,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [1.0.0] +## [Unreleased] +### Added +- paccache: Add manpage. +- rankmirrors: Add --max-time flag to specify the timeout used. + +### Changed +- pacscripts: Don't log to pacman.log when files are downloaded to the cache. +- pacscripts: Find package file path using pacman instead of doing it manually ourselves. +- pactree: Use full dependency string when finding dependencies, since if we don't use the version requirement part of the string, we will sometimes return the wrong results. +- vim/ftplugin/PKGBUILD: Set vim 'commentstring' option +- vim/syntax/PKGBUILD: Add sha224sums support. + +### Fixed +- pacsort: Fix short version option. + + +## [1.0.0] - 2018-05-28 ### Added - `--version` option to pactree. - Import pacsort utility. @@ -17,6 +33,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - checkupdates now reports failures to update the databases. - Add `-v` to pacsort help output. + ## 0.0.1 - 2016-10-17 ### Added - Imported the following utilities: @@ -32,5 +49,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - updpkgsums - Added vim highlighting for PKGBUILDs. -[1.0.0]: https://git.archlinux.org/pacman-contrib.git/log/?qt=range&q=v0.0.1..v1.0.0 + [Unreleased]: https://git.archlinux.org/pacman-contrib.git/log/?qt=range&q=v1.0.0..master +[1.0.0]: https://git.archlinux.org/pacman-contrib.git/log/?qt=range&q=v0.0.1..v1.0.0 -- 2.18.0
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com> --- CHANGES.md | 3 ++- configure.ac | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 8300ad2..073c940 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.1.0] - 2018-08-05 ### Added - paccache: Add manpage. - rankmirrors: Add --max-time flag to specify the timeout used. @@ -52,3 +52,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [Unreleased]: https://git.archlinux.org/pacman-contrib.git/log/?qt=range&q=v1.0.0..master [1.0.0]: https://git.archlinux.org/pacman-contrib.git/log/?qt=range&q=v0.0.1..v1.0.0 +[1.1.0]: https://git.archlinux.org/pacman-contrib.git/log/?qt=range&q=v1.0.0..v1.1.0 diff --git a/configure.ac b/configure.ac index e0f031a..cb7d03e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([pacman-contrib], [1.0.0], [pacman-contrib@lists.archlinux.org]) +AC_INIT([pacman-contrib], [1.1.0], [pacman-contrib@lists.archlinux.org]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) AC_REQUIRE_AUX_FILE([tap-driver.sh]) -- 2.18.0
participants (1)
-
Johannes Löthberg