diff --git a/changelog.md b/changelog.md index a332dba..81d60cd 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-12-02 - 3.3.7 - fix(package) +Update author field in package.json + +- Corrected the author field from 'Lossless GmbH' to 'Task Venture Capital GmbH' in the package.json file. + ## 2024-12-02 - 3.3.6 - fix(package) Fix license field in package.json to reflect MIT licensing diff --git a/package.json b/package.json index 6ec25ea..5b6bb83 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "dist_ts/index.js", "typings": "dist_ts/index.d.ts", "type": "module", - "author": "Lossless GmbH", + "author": "Task Venture Capital GmbH", "license": "MIT", "scripts": { "test": "(tstest test/)", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 311162d..af981bc 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartbucket', - version: '3.3.6', + version: '3.3.7', description: 'A TypeScript library providing a cloud-agnostic interface for managing object storage with functionalities like bucket management, file and directory operations, and advanced features such as metadata handling and file locking.' }