diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dd14169..3795864a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # Changelog -### Unreleased +### 7.2.0 / 2024-02-27 * Added support for `roundTo` field in availability response model * Added support for `attributes` field in folder model * Added support for icloud as an auth provider +* Fixed query params not showing up in method parameters for finding a message +* Fixed missing fields in message models * Removed unnecessary `clientId` from detectProvider params ### 7.1.0 / 2024-02-12 diff --git a/package-lock.json b/package-lock.json index ff5e1d86..024b48d3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "nylas", - "version": "7.1.0", + "version": "7.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "nylas", - "version": "7.1.0", + "version": "7.2.0", "license": "MIT", "dependencies": { "change-case": "^4.1.2", diff --git a/package.json b/package.json index 27180166..ccb10109 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nylas", - "version": "7.1.0", + "version": "7.2.0", "description": "A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.", "main": "lib/cjs/nylas.js", "types": "lib/types/nylas.d.ts", diff --git a/src/version.ts b/src/version.ts index a2e273af..f2b3877a 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,2 +1,2 @@ // This file is generated by scripts/exportVersion.js -export const SDK_VERSION = '7.1.0'; +export const SDK_VERSION = '7.2.0';