diff --git a/Changes b/Changes
index 57b07e1..e1538a8 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,4 @@
+0.76 2024-10-09
 - handle PDL 2.064+ types like signed byte (#5) - thanks @a-shahba for report
 
 0.75 2021-08-08
diff --git a/hdf5.pd b/hdf5.pd
index 20d0902..ef1523c 100644
--- a/hdf5.pd
+++ b/hdf5.pd
@@ -1,6 +1,6 @@
 use Config;
 
-our $VERSION = '0.75';
+our $VERSION = '0.76';
 pp_setversion(qq{'$VERSION'});
 
 # Necessary includes for .xs file
@@ -1247,13 +1247,13 @@ hid_t H5Dopen (hid_t loc_id, const char *name);
 herr_t H5Dwrite (hid_t dataset_id, hid_t mem_type_id, hid_t mem_space_id, hid_t file_space_id, hid_t xfer_plist_id, const char * buf);
 herr_t H5Dextend(hid_t dataset_id, const hsize_t *size);
 # H5Dread buf type changed from void * to I8 * so that is can be catergorized separately in the
-#  typemap as a T_PVI traslation
+#  typemap as a T_PVI translation
 herr_t H5Dread (hid_t dataset_id, hid_t mem_type_id, hid_t mem_space_id, hid_t file_space_id, hid_t xfer_plist_id, I8 * buf);
 hid_t H5Dclose (hid_t dataset_id);
 hid_t H5Dget_type(hid_t dataset_id);
 hid_t H5Dget_space(hid_t dataset_id);
-# H5Dvlen_reclaim buf type changed from void * to I8 * so that is can be catergorized separately in the
-#  typemap as a T_PVI traslation
+# H5Dvlen_reclaim buf type changed from void * to I8 * so that it can be categorised separately in the
+#  typemap as a T_PVI translation
 herr_t H5Dvlen_reclaim(hid_t type_id, hid_t space_id, hid_t plist_id, I8 *buf);
 
 hid_t H5Gcreate(hid_t loc_id, const char *name, size_t size_hint);