From acc3d9e986dbf2ad343e6676f6dbb29eeb3acdb0 Mon Sep 17 00:00:00 2001 From: Alex Povel Date: Wed, 3 Feb 2021 13:48:40 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 16 ++++++++++++++++ cookbook.cls | 2 +- tests/pyproject.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd9aa00..02afac6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.0] - 2021-02-03 + +### Added + +- Option to suppress printing of pages list in the glossaries (b75d3d1) +- GitLab description templates (7038798) + +### Changed + +- Syntax highlighting now uses `minted` instead of `listings`, a backwards-incompatible change (19fbd87) +- Documentation now stresses Docker usage over manual "labour" (6843a2b) + +### Removed + +- Previous, custom-made `listings` language definitions; these are covered much better by `pygments`, aka `minted` (19fbd87) + ## [2.0.0] - 2020-11-11 ### Added diff --git a/cookbook.cls b/cookbook.cls index b4ea825..ff1b075 100644 --- a/cookbook.cls +++ b/cookbook.cls @@ -11,7 +11,7 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Refer to https://www.overleaf.com/learn/latex/Writing_your_own_class \NeedsTeXFormat{LaTeX2e} -\ProvidesClass{cookbook}[2020-11-11 v2.0.0 cookbook class] +\ProvidesClass{cookbook}[2021-02-03 v3.0.0 cookbook class] % Fail early and give useful information on the required engine. % This helps users who do not read the documentation beforehand, by promoting the diff --git a/tests/pyproject.toml b/tests/pyproject.toml index f99bd09..f9d5b05 100644 --- a/tests/pyproject.toml +++ b/tests/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tests" -version = "2.0.0" +version = "3.0.0" description = "Checks for PDFs." authors = ["Alex Povel "]