diff --git a/changelog.md b/changelog.md index 8b65dc6..6674766 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2025-11-23 - 5.0.1 - fix(docs) +Clarify README wording about S3 compatibility and AWS SDK usage + +- Update README wording to "Full S3 API compatibility" and clarify it works seamlessly with AWS SDK v3 and other S3 clients + ## 2025-11-23 - 5.0.0 - BREAKING CHANGE(core) Production-ready S3-compatible server: nested config, multipart uploads, CORS, structured logging, SmartFS migration and improved error handling diff --git a/readme.md b/readme.md index 723c829..36daa60 100644 --- a/readme.md +++ b/readme.md @@ -6,7 +6,7 @@ - 🏃 **Lightning-fast local S3 simulation** - No more waiting for cloud operations during development - ⚡ **Production-ready architecture** - Built on Node.js http module with zero framework dependencies -- 🔄 **Full AWS S3 API compatibility** - Drop-in replacement for AWS SDK v3 and other S3 clients +- 🔄 **Full S3 API compatibility** - Works seamlessly with AWS SDK v3 and any other S3 client - 📂 **Local directory mapping** - Your buckets live right on your filesystem - 🔐 **Simple authentication** - Static credential-based auth for secure access - 🌐 **CORS support** - Configurable cross-origin resource sharing diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 68360ac..01813bb 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smarts3', - version: '5.0.0', + version: '5.0.1', description: 'A Node.js TypeScript package to create a local S3 endpoint for simulating AWS S3 operations using mapped local directories for development and testing purposes.' }