diff --git a/README.md b/README.md
index f92b1801..021d4d0c 100644
--- a/README.md
+++ b/README.md
@@ -50,6 +50,7 @@ Module | Platform | Sample | Release Notes
[spring-cloud-azure-feature-management-web](https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/spring/spring-cloud-azure-feature-management-web)
[](https://search.maven.org/artifact/com.azure.spring/spring-cloud-azure-feature-management-web) | Spring Boot | [Sample](https://github.com/Azure-Samples/azure-spring-boot-samples/tree/main/appconfiguration/spring-cloud-azure-feature-management-web/spring-cloud-azure-feature-management-web-sample) | [Release Notes](https://github.com/Azure/AppConfiguration/blob/main/releaseNotes/SpringCloudAzureFeatureManagement.md)
[featuremanagement](https://github.com/microsoft/FeatureManagement-Python)
[](https://pypi.org/project/FeatureManagement/) | Python | [Sample](https://github.com/microsoft/FeatureManagement-Python/tree/main/samples) | [Release Notes](https://github.com/Azure/AppConfiguration/blob/main/releaseNotes/PythonFeatureManagement.md)
[@microsoft/feature-management](https://github.com/microsoft/FeatureManagement-JavaScript)
[](https://www.npmjs.com/package/@microsoft/feature-management) | JavaScript | [Sample](https://github.com/microsoft/FeatureManagement-JavaScript/tree/main/examples) | [Release Notes](https://github.com/Azure/AppConfiguration/blob/main/releaseNotes/JavaScriptFeatureManagement.md)
+[featuremanagement](https://github.com/microsoft/FeatureManagement-Go)
[](https://pkg.go.dev/github.com/microsoft/Featuremanagement-Go/featuremanagement) | Go | [Sample](https://github.com/microsoft/FeatureManagement-Go/tree/main/example) | [Release Notes](https://github.com/Azure/AppConfiguration/blob/main/releaseNotes/GoFeatureManagement.md)
#### SDKs
diff --git a/releaseNotes/GoFeatureManagement.md b/releaseNotes/GoFeatureManagement.md
new file mode 100644
index 00000000..1afd9481
--- /dev/null
+++ b/releaseNotes/GoFeatureManagement.md
@@ -0,0 +1,16 @@
+# Microsoft Feature Management for Go
+
+[Source code][source_code] | [Package][package] | [Samples][samples]
+
+## 1.0.0-beta.1 - July 01, 2025
+
+Initial release of Feature Management for Go, including support for the following capabilities. Note that, version `1.1.0-beta.1` or later of Go provider is required for loading feature flags from Azure App Configuration.
+
+- Support for feature flag providers.
+- Built-in feature flag provider for Azure App Configuration by the module `featuremanagement/providers/azappconfig`.
+- Support for basic feature flags with boolean states.
+- Support for feature filters, including custom filters and built-in filters [`Microsoft.TimeWindow`](https://github.com/microsoft/FeatureManagement/blob/main/Schema/FeatureFilters/Microsoft.TimeWindow.v1.0.0.schema.json) and [`Microsoft.Targeting`](https://github.com/microsoft/FeatureManagement/blob/main/Schema/FeatureFilters/Microsoft.Targeting.v1.0.0.schema.json).
+
+[source_code]: https://github.com/microsoft/FeatureManagement-Go
+[package]: https://pkg.go.dev/github.com/microsoft/Featuremanagement-Go/featuremanagement
+[samples]: https://github.com/microsoft/FeatureManagement-Go/tree/main/example
\ No newline at end of file