diff --git a/CHANGES.md b/CHANGES.md
index 8eb1c21..49bd0c3 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,7 @@
+## 0.3.0
+* minor: `input.lastModification` is now optional in all cases
+* minor: when extracting the file name from a Request, consider first the "filename" option from the "Content-Disposition" header
+
## 0.2.4 More Fixed
* patch (**critical**): fixed infinite loop in a function that was trying to chunk large files for crc32
diff --git a/README.md b/README.md
index 8c4a828..855d49c 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@ async function downloadTestZip() {
# Work in progress
-`client-zip` 0.2 is somewhat in the PoC stage and does not yet support compression, encryption, or any extra fields and attributes, and does not produce ZIP64 files.
+`client-zip` 0.3 is somewhat in the PoC stage and does not yet support compression, encryption, or any extra fields and attributes, and does not produce ZIP64 files.
# Compatibility
diff --git a/package-lock.json b/package-lock.json
index 90139a6..7fd43d4 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "client-zip",
- "version": "0.2.4",
+ "version": "0.3.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index e922aab..38c481e 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "client-zip",
- "version": "0.2.4",
+ "version": "0.3.0",
"description": "A client-side streaming ZIP generator",
"browser": "index.js",
"module": "index.js",