diff --git a/CHANGELOG.md b/CHANGELOG.md index b36b454..847cc59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # **Changelog** - [Keep a Changelog] -## [Upcoming] +## [0.10.0] - 2017-11-26 - Repo access code into separate adaptor classes that implement the GitRepository Interface. - Added Github interface. - Added basic BitBucket interface (WIP). @@ -9,9 +9,9 @@ - Grouped config inputs into sections on the config screen. - Changed the Show more/Show all buttons to use current theme styles. Thanks @matjazp. - Remove Semantic versioning from changelog - not quite ready for it yet. -- Attempt to fix "prism cannot be unloaded" issue. - Simplifiy changelog formatting. - Add result caching with config settings. +- Bugfix: don't load Prism when only checking if it is installed. Thanks @matjazp. ## [0.9.2] - 2017-11-22 @@ -163,7 +163,8 @@ [Semantic Versioning]: https://semver.org/spec/v2.0.0.html [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ -[Upcoming]: https://github.com/netcarver/ModuleReleaseNotes/compare/0.9.2...HEAD +[Upcoming]: https://github.com/netcarver/ModuleReleaseNotes/compare/0.10.0...HEAD +[0.10.0]: https://github.com/netcarver/ModuleReleaseNotes/compare/0.9.2...0.10.0 [0.9.2]: https://github.com/netcarver/ModuleReleaseNotes/compare/0.9.1...0.9.2 [0.9.1]: https://github.com/netcarver/ModuleReleaseNotes/compare/0.9.0...0.9.1 [0.9.0]: https://github.com/netcarver/ModuleReleaseNotes/compare/0.8.1...0.9.0 diff --git a/ModuleReleaseNotes.module b/ModuleReleaseNotes.module index b7242cc..7dde8c1 100644 --- a/ModuleReleaseNotes.module +++ b/ModuleReleaseNotes.module @@ -8,16 +8,6 @@ * * http://processwire.com * - * DONE - * ---- - * - Move support for GitHub into repo-host abstraction - * - Add support for situation where local install version > published version. - * Could try displaying local changelog file (if any, as it is likely to be more current than remote one) - * - Use capabilities flags - * - Add caching to help circumvent hitting hosting service API rate limits - * - Add support for Gitlab hosted repositories via repo-host abstraction - * - Add support for BitBucket hosted repositories via repo-host abstraction - * * TODO * ---- * - Add paging to API result fetches @@ -26,6 +16,7 @@ * Known Issues * ------------ * + * Need to decide on my own changelog format. Will probably end up being a simplified version of Keep a Changelog. */ require_once 'FileCache.php'; @@ -44,7 +35,7 @@ class ModuleReleaseNotes extends Process implements ConfigurableModule { return [ 'title' => __('Module Release Notes'), 'summary' => __("Discovers and shows what has changed with each module version."), - 'version' => '0.9.2', + 'version' => '0.10.0', 'author' => 'S Dickinson (netcarver)', 'autoload' => 'template=admin', 'singular' => true,