diff --git a/README.md b/README.md
index 4679aaec..20164339 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,10 @@ see wiki for more information: [wiki](https://github.com/thmarx/cms/wiki)
# changelog
+## 4.14.1
+
+* **BUGFIX** TaxonomyResolver does not set page properties correctly [#184](https://github.com/thmarx/cms/issues/184)
+
## 4.14.0
* **BUGFIX** Markdown list block does not render content correct if content contains unescaped dot [#183](https://github.com/thmarx/cms/issues/183)
diff --git a/cms-api/pom.xml b/cms-api/pom.xml
index 92af9157..c21cf3a9 100644
--- a/cms-api/pom.xml
+++ b/cms-api/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms
cms-parent
- 4.14.0
+ 4.14.1
cms-api
jar
diff --git a/cms-content/pom.xml b/cms-content/pom.xml
index ce5c62d6..1cece0df 100644
--- a/cms-content/pom.xml
+++ b/cms-content/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms
cms-parent
- 4.14.0
+ 4.14.1
cms-content
jar
diff --git a/cms-content/src/main/java/com/github/thmarx/cms/content/TaxonomyResolver.java b/cms-content/src/main/java/com/github/thmarx/cms/content/TaxonomyResolver.java
index 0ed66701..0e21aace 100644
--- a/cms-content/src/main/java/com/github/thmarx/cms/content/TaxonomyResolver.java
+++ b/cms-content/src/main/java/com/github/thmarx/cms/content/TaxonomyResolver.java
@@ -90,6 +90,10 @@ public Optional getTaxonomyResponse(final RequestContext conte
Optional value = getTaxonomyValue(context);
Page resultPage = Page.EMPTY;
if (value.isPresent()) {
+ resultPage = new Page<>();
+ resultPage.setPage(page);
+ resultPage.setSize(size);
+
template = taxonomy.getSingleTemplate();
meta.put(Constants.MetaFields.TITLE, taxonomy.getTitle() + " - " + taxonomy.getValueTitle(value.get()));
var contentPage = db.getTaxonomies().withValue(taxonomy, value.get(), page, size);
diff --git a/cms-extensions/pom.xml b/cms-extensions/pom.xml
index 4ca015d4..a76149f0 100644
--- a/cms-extensions/pom.xml
+++ b/cms-extensions/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms
cms-parent
- 4.14.0
+ 4.14.1
cms-extensions
jar
diff --git a/cms-filesystem/pom.xml b/cms-filesystem/pom.xml
index ac40f8a5..03f1170b 100644
--- a/cms-filesystem/pom.xml
+++ b/cms-filesystem/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms
cms-parent
- 4.14.0
+ 4.14.1
cms-filesystem
jar
diff --git a/cms-git/pom.xml b/cms-git/pom.xml
index affc5d2a..5288c836 100644
--- a/cms-git/pom.xml
+++ b/cms-git/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms
cms-parent
- 4.14.0
+ 4.14.1
cms-git
jar
diff --git a/cms-markdown/pom.xml b/cms-markdown/pom.xml
index e79940a7..a262843d 100644
--- a/cms-markdown/pom.xml
+++ b/cms-markdown/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms
cms-parent
- 4.14.0
+ 4.14.1
cms-markdown
jar
diff --git a/cms-media/pom.xml b/cms-media/pom.xml
index df02efaf..6a05e4d9 100644
--- a/cms-media/pom.xml
+++ b/cms-media/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms
cms-parent
- 4.14.0
+ 4.14.1
cms-media
jar
diff --git a/cms-sandbox/pom.xml b/cms-sandbox/pom.xml
index e7bfe96d..c1e88095 100644
--- a/cms-sandbox/pom.xml
+++ b/cms-sandbox/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms
cms-parent
- 4.14.0
+ 4.14.1
cms-sandbox
pom
diff --git a/cms-server/pom.xml b/cms-server/pom.xml
index c260f88b..07a2e11a 100644
--- a/cms-server/pom.xml
+++ b/cms-server/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms
cms-parent
- 4.14.0
+ 4.14.1
cms-server
jar
diff --git a/cms-template/pom.xml b/cms-template/pom.xml
index a1012dde..8a6ffc28 100644
--- a/cms-template/pom.xml
+++ b/cms-template/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms
cms-parent
- 4.14.0
+ 4.14.1
cms-template
jar
diff --git a/modules-framework/api/pom.xml b/modules-framework/api/pom.xml
index 7bee9a38..a9974b59 100644
--- a/modules-framework/api/pom.xml
+++ b/modules-framework/api/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms.module.framework
module-framework
- 4.14.0
+ 4.14.1
modules-api
jar
diff --git a/modules-framework/manager/pom.xml b/modules-framework/manager/pom.xml
index fd4a65ba..ed37d1bd 100644
--- a/modules-framework/manager/pom.xml
+++ b/modules-framework/manager/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms.module.framework
module-framework
- 4.14.0
+ 4.14.1
modules-manager
jar
diff --git a/modules-framework/pom.xml b/modules-framework/pom.xml
index 67851597..89cbe77a 100644
--- a/modules-framework/pom.xml
+++ b/modules-framework/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms
cms-parent
- 4.14.0
+ 4.14.1
com.github.thmarx.cms.module.framework
module-framework
diff --git a/modules/example-module/pom.xml b/modules/example-module/pom.xml
index 74f6f8a2..3a25804e 100644
--- a/modules/example-module/pom.xml
+++ b/modules/example-module/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms.modules
cms-modules
- 4.14.0
+ 4.14.1
example-module
jar
diff --git a/modules/pom.xml b/modules/pom.xml
index f9024062..832087f1 100644
--- a/modules/pom.xml
+++ b/modules/pom.xml
@@ -4,7 +4,7 @@
com.github.thmarx.cms
cms-parent
- 4.14.0
+ 4.14.1
com.github.thmarx.cms.modules
cms-modules
diff --git a/pom.xml b/pom.xml
index 0a4a397c..651b3219 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.github.thmarx.cms
cms-parent
- 4.14.0
+ 4.14.1
pom
UTF-8