diff --git a/docs/release-notes.md b/docs/release-notes.md index abb3c422..599233d7 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,13 @@ # Release notes +## 1.1.0 + +- New: Show error page when CRM initialization fails +- Better: Use local cached contact info to avoid rate limit issue +- Better: Auto call log now supports retrospectively logging up to 100 unlogged records upon extension open +- Bullhorn: Default note action matching ignores case and spaces +- Bullhorn: Fix issue on user id confusion + ## 1.0.10 - Change: Unreolved tab is removed now. To check out unlogged calls, there's now a filter on call history page diff --git a/package.json b/package.json index 93eb797e..feaaf05a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rc-unified-crm-extension-server", - "version": "1.0.10", + "version": "1.1.0", "description": "RingCentral Unified CRM Extension", "main": "index.js", "bin": { diff --git a/src/adapters/manifest.json b/src/adapters/manifest.json index 87efe32b..89d87b17 100644 --- a/src/adapters/manifest.json +++ b/src/adapters/manifest.json @@ -868,5 +868,5 @@ } } }, - "version": "1.0.10" + "version": "1.1.0" } \ No newline at end of file diff --git a/src/adapters/testCRM/manifest.json b/src/adapters/testCRM/manifest.json index d0558a01..e9ce6c62 100644 --- a/src/adapters/testCRM/manifest.json +++ b/src/adapters/testCRM/manifest.json @@ -94,5 +94,5 @@ } } }, - "version": "1.0.10" + "version": "1.1.0" } \ No newline at end of file diff --git a/src/releaseNotes.json b/src/releaseNotes.json index dd96a27a..a11c5ce3 100644 --- a/src/releaseNotes.json +++ b/src/releaseNotes.json @@ -1,4 +1,30 @@ { + "1.1.0": { + "global":[ + { + "type": "New", + "description": "- Show error page when CRM initialization fails" + }, + { + "type": "Better", + "description": "- Use local cached contact info to avoid rate limit issue" + }, + { + "type": "Better", + "description": "- Auto call log now supports retrospectively logging up to 100 unlogged records upon extension open" + } + ], + "bullhorn":[ + { + "type": "Better", + "description": "- Default note action matching ignores case and spaces" + }, + { + "type": "Fix", + "description": "- Issue of session becoming invalid due to user id confusion" + } + ] + }, "1.0.10": { "global": [ {