From 42b094e079ec6c2541ea2094babeeff0a3817434 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 10 Jul 2024 11:18:16 +0200 Subject: [PATCH] chore(release): Add changelog for 1.2.2 Signed-off-by: Joas Schilling --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a71c8bc..680c9ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ # Changelog All notable changes to this project will be documented in this file. +## 1.2.2 - 2024-08-23 +### Added +* `cast_spaces`: A single space between cast and variable +* `lowercase_cast`: Cast should be written in lower case +* `method_chaining_indentation`: Use the same indentation when changing methods +* `no_short_bool_cast`: Short cast bool using double exclamation mark should not be used +* `phpdoc_align`: All items of the given PHPDoc tags must be left-aligned +* `phpdoc_single_line_var_spacing`: Single line @var PHPDoc should have proper spacing +* `phpdoc_var_annotation_correct_order`: Enforce the correct order for phpdoc annotations +* `short_scalar_cast`: (boolean) => (bool), (integer) => (int), ... +* `single_quote`: Use single quotes for simple strings +* `types_spaces`: No spaces around union and intersection type operators + ## 1.2.1 - 2024-02-01 ### Fix * fix: Remove `fully_qualified_strict_types` again by @nickvergessen in https://github.com/nextcloud/coding-standard/pull/16