diff --git a/CHANGELOG.md b/CHANGELOG.md
index 48702fd6c..6daef8c4f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,29 @@
> make sure you follow our [migration guide](https://docs.sentry.io/platforms/react-native/migration/) first.
+## Unreleased
+
+### Features
+
+- Add Replay Custom Masking for iOS ([#4224](https://github.com/getsentry/sentry-react-native/pull/4224))
+
+ ```jsx
+ import * as Sentry from '@sentry/react-native';
+
+ const Example = () => {
+ return (
+
+
+ ${"All children of Sentry.Mask will be masked."}
+
+
+ ${"Only direct children of Sentry.Unmask will be unmasked."}
+
+
+ );
+ };
+ ```
+
## 6.3.0
### Features
@@ -37,27 +60,6 @@
});
```
-### Features
-
-- Add Replay Custom Masking for iOS ([#4224](https://github.com/getsentry/sentry-react-native/pull/4224))
-
- ```jsx
- import * as Sentry from '@sentry/react-native';
-
- const Example = () => {
- return (
-
-
- ${"All children of Sentry.Mask will be masked."}
-
-
- ${"Only direct children of Sentry.Unmask will be unmasked."}
-
-
- );
- };
- ```
-
### Fixes
- Prevents exception capture context from being overwritten by native scope sync ([#4124](https://github.com/getsentry/sentry-react-native/pull/4124))