diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9e5bc947..59666a16 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,25 @@
+
+## [v2.25.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.24.0...v2.25.0) (2023-01-05)
+
+### Docs
+
+* Add documentation of remote hosts. ([#498](https://github.com/kreuzwerker/terraform-provider-docker/issues/498))
+
+### Feat
+
+* Migrate build block to `docker_image` ([#501](https://github.com/kreuzwerker/terraform-provider-docker/issues/501))
+* Add platform attribute to docker_image resource ([#500](https://github.com/kreuzwerker/terraform-provider-docker/issues/500))
+* Add sysctl implementation to container of docker_service. ([#499](https://github.com/kreuzwerker/terraform-provider-docker/issues/499))
+
+
## [v2.24.0](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.23.1...v2.24.0) (2022-12-23)
+### Chore
+
+* Prepare release v2.24.0
+
### Docs
* Fix generated website.
diff --git a/README.md b/README.md
index d49587a7..fc843710 100644
--- a/README.md
+++ b/README.md
@@ -35,7 +35,7 @@ $ make build
## Example usage
-Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.24.0/docs) of the registry
+Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.25.0/docs) of the registry
or use the following example:
@@ -47,7 +47,7 @@ terraform {
# since new versions are released frequently
docker = {
source = "kreuzwerker/docker"
- version = "2.24.0"
+ version = "2.25.0"
}
}
}
diff --git a/docs/index.md b/docs/index.md
index f652f926..c1987f3c 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -25,7 +25,7 @@ terraform {
required_providers {
docker = {
source = "kreuzwerker/docker"
- version = "2.24.0"
+ version = "2.25.0"
}
}
}
@@ -50,7 +50,7 @@ Terraform 0.12 and earlier:
```terraform
provider "docker" {
- version = "~> 2.24.0"
+ version = "~> 2.25.0"
host = "unix:///var/run/docker.sock"
}
diff --git a/examples/provider/provider-tf12.tf b/examples/provider/provider-tf12.tf
index 7a2b1f3c..91a43998 100644
--- a/examples/provider/provider-tf12.tf
+++ b/examples/provider/provider-tf12.tf
@@ -1,5 +1,5 @@
provider "docker" {
- version = "~> 2.24.0"
+ version = "~> 2.25.0"
host = "unix:///var/run/docker.sock"
}
diff --git a/examples/provider/provider-tf13.tf b/examples/provider/provider-tf13.tf
index 6b9b5fa0..da913a6c 100644
--- a/examples/provider/provider-tf13.tf
+++ b/examples/provider/provider-tf13.tf
@@ -2,7 +2,7 @@ terraform {
required_providers {
docker = {
source = "kreuzwerker/docker"
- version = "2.24.0"
+ version = "2.25.0"
}
}
}