diff --git a/.github/.keepalive b/.github/.keepalive
deleted file mode 100644
index f2465b9..0000000
--- a/.github/.keepalive
+++ /dev/null
@@ -1 +0,0 @@
-2024-09-01T06:16:20.738Z
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cab481b..f633dd9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,50 @@
> Package changelog.
+
+
+## Unreleased (2024-09-15)
+
+
+
+### Bug Fixes
+
+- [`91ad072`](https://github.com/stdlib-js/stdlib/commit/91ad07207eee217885975ce19d83e85d1f4a6499) - add missing property
+
+
+
+
+
+
+
+### Commits
+
+
+
+- [`91ad072`](https://github.com/stdlib-js/stdlib/commit/91ad07207eee217885975ce19d83e85d1f4a6499) - **fix:** add missing property _(by Athan Reines)_
+
+
+
+
+
+
+
+
+
+### Contributors
+
+A total of 1 person contributed to this release. Thank you to this contributor:
+
+- Athan Reines
+
+
+
+
+
+
+
+
+
## 0.3.0 (2024-07-29)
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 57d1184..8610d91 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -26,11 +26,13 @@ EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
Frank Kovacs
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
Gunj Joshi
+HarshaNP <96897754+GittyHarsha@users.noreply.github.com>
Harshita Kalani
Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com>
Jaimin Godhani <112328542+Jai0401@users.noreply.github.com>
James Gelok
Jaysukh Makvana
+Jenish Thapa <141203631+jenish-thapa@users.noreply.github.com>
Jithin KS
Joel Mathew Koshy
Joey Reed
@@ -86,8 +88,10 @@ Stephannie Jiménez Gacha
Suraj kumar <125961509+kumarsuraj212003@users.noreply.github.com>
Tirtadwipa Manunggal
Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com>
+Tufailahmed Bargir <142114244+Tufailahmed-Bargir@users.noreply.github.com>
Utkarsh
Utkarsh Raj
+Vaibhav Patel <98279986+noobCoderVP@users.noreply.github.com>
Varad Gupta
Xiaochuan Ye
Yernar Yergaziyev
@@ -96,3 +100,4 @@ nishant-s7 <97207366+nishant-s7@users.noreply.github.com>
orimiles5 <97595296+orimiles5@users.noreply.github.com>
rainn <88160429+AmCodesLame@users.noreply.github.com>
rei2hu
+yaswanth <116426380+yaswanthkosuru@users.noreply.github.com>
diff --git a/docs/types/index.d.ts b/docs/types/index.d.ts
index f5733e2..9ca5717 100644
--- a/docs/types/index.d.ts
+++ b/docs/types/index.d.ts
@@ -368,6 +368,17 @@ declare class Complex64Array implements Complex64ArrayInterface {
*/
at( i: number ): Complex64 | void;
+ /**
+ * Pointer to the underlying data buffer.
+ *
+ * @example
+ * var arr = new Complex64Array( 10 );
+ *
+ * var buf = arr.buffer;
+ * // returns
+ */
+ readonly buffer: ArrayBuffer;
+
/**
* Length (in bytes) of the array.
*