diff --git a/CHANGELOG.md b/CHANGELOG.md
index 67e7b30..a8bbc62 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,12 @@
# (MODX)EvolutionCMS.snippets.ddIf changelog
+## Version 2.3 (2023-06-03)
+* \+ Parameters → `operator` → Valid values → `'isIncludes'`: The new valid value. Case-sensitive check if `operand1` contains `operand2` (see README → Examples).
+* \* `\ddTools::getTpl` is used instead of `$modx->getTpl` (means a bit less bugs).
+* \* Attention! (MODX)EvolutionCMS.libraries.ddTools >= 0.60 is required.
+
+
## Version 2.2 (2021-04-30)
* \+ Parameters → `operator`:
* \+ Added the ability to check if `operand1` is just white space (see README).
diff --git a/CHANGELOG_ru.md b/CHANGELOG_ru.md
index 0c2fbe1..fea901a 100644
--- a/CHANGELOG_ru.md
+++ b/CHANGELOG_ru.md
@@ -1,6 +1,12 @@
# (MODX)EvolutionCMS.snippets.ddIf changelog
+## Версия 2.3 (2023-06-03)
+* \+ Параметры → `operator` → Допустимые значения → `'isIncludes'`: Новое значение. Проверяет, содержит ли `operand1` в себе `operand2` с учётом регистра, (см. README → Примеры).
+* \* `\ddTools::getTpl` используется вместо `$modx->getTpl` (стало чуть меньше багов).
+* \* Внимание! Требуется (MODX)EvolutionCMS.libraries.ddTools >= 0.60.
+
+
## Версия 2.2 (2021-04-30)
* \+ Параметры → `operator`:
* \+ Добавлена возможность проверить, что строка `operand1` содержит только пробельные символы (см. README).
diff --git a/README.md b/README.md
index ab5bb17..c1832ad 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ require_once(
#### 1. Elements → Snippets: Create a new snippet with the following data
1. Snippet name: `ddIf`.
-2. Description: `2.2 This snippet compares different values and returns required chunk or string.`.
+2. Description: `2.3 This snippet compares different values and returns required chunk or string.`.
3. Category: `Core`.
4. Parse DocBlock: `no`.
5. Snippet code (php): Insert content of the `ddIf_snippet.php` file from the archive.
diff --git a/README_ru.md b/README_ru.md
index 830a6c0..af124d6 100644
--- a/README_ru.md
+++ b/README_ru.md
@@ -41,7 +41,7 @@ require_once(
#### 1. Элементы → Сниппеты: Создайте новый сниппет со следующими параметрами
1. Название сниппета: `ddIf`.
-2. Описание: `2.2 Сравнивает значения и выводит необходимый чанк или строку.`.
+2. Описание: `2.3 Сравнивает значения и выводит необходимый чанк или строку.`.
3. Категория: `Core`.
4. Анализировать DocBlock: `no`.
5. Код сниппета (php): Вставьте содержимое файла `ddIf_snippet.php` из архива.
diff --git a/composer.json b/composer.json
index 35f8a87..782cdd1 100644
--- a/composer.json
+++ b/composer.json
@@ -1,7 +1,7 @@
{
"name": "dd/evolutioncms-snippets-ddif",
"type": "modxevo-snippet",
- "version": "2.2.0",
+ "version": "2.3.0",
"description": "This snippet compares different values and returns required chunk or string.",
"keywords": [
"modx",
diff --git a/ddIf_snippet.php b/ddIf_snippet.php
index ed35f96..9883a27 100644
--- a/ddIf_snippet.php
+++ b/ddIf_snippet.php
@@ -1,13 +1,13 @@