From b44f73ef7bd6fffac7370302981b265ca4b45e96 Mon Sep 17 00:00:00 2001 From: Patryk Obara Date: Mon, 29 Mar 2021 00:40:08 +0200 Subject: [PATCH] Update version to 0.10.0 --- ChangeLog | 38 ++++++++++++++++++++++++++------------ meson.build | 2 +- 2 files changed, 27 insertions(+), 13 deletions(-) diff --git a/ChangeLog b/ChangeLog index 52a6529..9b8ee14 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,17 +1,28 @@ -## Unreleased +## [Unreleased] -- Add -z, --silent option for beep prevention (old Debian patch) -- Add -p, --pointer option for capturing the mouse pointer -- Fix segfault when using $t special string in the filename -- Use .png extension when no file extension is passed -- Fix several static analysis issues and add Clang static analysis to CI -- Add SPDX license identifiers (this software uses MIT-feh license) +## [0.10.0] - 2021-03-29 -Tue 23 Mar 04:26:49 CET 2021 Patryk Obara - * Bundle giblib to make it easier to build the program. - * Rewrite buildsystem in Meson, as it's much easier to maintain. - * Add rudimentary GitHub CI. - * Fix several warnings. +### Added +- Add -z, --silent option for beep prevention (old Debian patch). +- Add -p, --pointer option for capturing the mouse pointer. +- Add SPDX license identifiers (this software uses MIT-feh license). +- Add Clang static analysis to CI. + +### Changed +- Fix segfault when using $t special string in the filename. +- Use .png extension when no file extension is passed. +- Fix several static analysis issues and add Clang static analysis to CI. +- Start relicensing new changes to OSI-approved MIT license. + +## [0.9.0] - 2021-03-23 + +### Added +- Add rudimentary GitHub CI. +- Bundle giblib to make it easier to build the program. + +### Changed +- Rewrite buildsystem in Meson, as it's much easier to maintain. +- Fix several warnings. Sun Aug 15 22:48:11 GMT 2010 Patryk Obara * Anonymous patches from Debian: man fixes and -u, --focused @@ -144,3 +155,6 @@ Thu Oct 26 14:09:52 2000 Tom Gilbert * Created scrot. +[Unreleased]: https://github.com/dreamer/scrot/compare/v0.10.0...HEAD +[0.10.0]: https://github.com/dreamer/scrot/compare/v0.9.0...v0.10.0 +[0.9.0]: https://github.com/dreamer/scrot/compare/scrot-0.8...v0.9.0 diff --git a/meson.build b/meson.build index b3f6c6a..8bea858 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('scrot', 'c', - version : '0.9.0', + version : '0.10.0', license : 'MIT-feh', default_options : ['c_std=c11', 'b_ndebug=if-release'], meson_version : '>= 0.49.0')