diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4c9ca36c63d6e5fa1fd632ee04af1aeeabfca8f6..aea3235be18dc103bfedeefd94155045390ef6fb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ## [Unreleased]
 
+## [0.4.4] - 2024-07-16
+
 * Doc about supported domains (gitlab.com and froggit.fr)
 * Version of gitlab release-cli now fixed
 
diff --git a/README.md b/README.md
index 7f3219e268cebdf640da582414bee84f9180f721..3f59512cbc0e4415a90fa9b12f09a432ae193473 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ As a remote Template (recommended):
 
 ```yaml
 include:
-    -   remote: 'https://gitlab.com/swepy/cicd-templates/release-by-changelog/-/raw/0.4.3/templates/release-by-changelog.yml'
+    -   remote: 'https://gitlab.com/swepy/cicd-templates/release-by-changelog/-/raw/0.4.4/templates/release-by-changelog.yml'
 ```
 
 As a local Template (if the template is local to the instance):
@@ -27,7 +27,7 @@ As a local Template (if the template is local to the instance):
 ```yaml
 include:
     -   project: 'swepy/cicd-templates/release-by-changelog'
-        ref: '0.4.3'
+        ref: '0.4.4'
         file: 'templates/release-by-changelog.yml'
 ```
 
@@ -39,7 +39,7 @@ component is local to the instance):
 
 ```yaml
 include:
-    -   component: $CI_SERVER_FQDN/swepy/cicd-templates/release-by-changelog/release-by-changelog@0.4.3
+    -   component: $CI_SERVER_FQDN/swepy/cicd-templates/release-by-changelog/release-by-changelog@0.4.4
 ```
 
 [![Supported by GitLab.com](https://img.shields.io/badge/Supported_by-GitLab.com-orange)](https://gitlab.com)
diff --git a/pyproject.toml b/pyproject.toml
index 05703a3e9041f9c3b8471bcee930c03b69007b44..0f168c2299fb65174098b32c1760381c0956ea5c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,7 +1,7 @@
 [tool.bumpversion]
 commit = true
 config-file = "pyproject.toml"
-current_version = "0.4.3"
+current_version = "0.4.4"
 parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
 replace = "{new_version}"
 search = "{current_version}"