Skip to content

Commit

Permalink
🔖 tags: new version release 1.11.0 [skip ci]
Browse files Browse the repository at this point in the history
## [1.11.0](v1.10.0...v1.11.0) (2024-01-28)

### ✨ feature:

* get user timezone from google calendar ([#111](#111)) ([aa0346d](aa0346d))
  • Loading branch information
semantic-release-bot committed Jan 28, 2024
1 parent aa0346d commit 7cb580e
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@ function getGcalSync(){
const GcalSync = getGcalSyncDev()
gcalSync = new GcalSync(configs);
} else {
const version = "1.10.0"
const gcalSyncContent = UrlFetchApp.fetch(`https://cdn.jsdelivr.net/npm/gcal-sync@1.10.0`).getContentText();
const version = "1.11.0"
const gcalSyncContent = UrlFetchApp.fetch(`https://cdn.jsdelivr.net/npm/gcal-sync@1.11.0`).getContentText();
eval(gcalSyncContent)
gcalSync = new GcalSync(configs);
}
Expand Down
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
const APP_INFO = {
name: 'gcal-sync',
github_repository: 'lucasvtiradentes/gcal-sync',
version: '1.10.0',
build_date_time: '28/01/2024 18:56:48'
version: '1.11.0',
build_date_time: '28/01/2024 19:00:37'
};

const mergeArraysOfArrays = (arr) => arr.reduce((acc, val) => acc.concat(val), []);
Expand Down
2 changes: 1 addition & 1 deletion dist/index.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/setup/gcalsync_dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ function getGcalSyncDev(){
const APP_INFO = {
name: 'gcal-sync',
github_repository: 'lucasvtiradentes/gcal-sync',
version: '1.10.0',
build_date_time: '28/01/2024 18:56:48'
version: '1.11.0',
build_date_time: '28/01/2024 19:00:37'
};

const mergeArraysOfArrays = (arr) => arr.reduce((acc, val) => acc.concat(val), []);
Expand Down
7 changes: 7 additions & 0 deletions docs/CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CHANGELOG HISTORY

## [1.11.0](https://github.com/lucasvtiradentes/gcal-sync/compare/v1.10.0...v1.11.0) (2024-01-28)


### ✨ feature:

* get user timezone from google calendar ([#111](https://github.com/lucasvtiradentes/gcal-sync/issues/111)) ([aa0346d](https://github.com/lucasvtiradentes/gcal-sync/commit/aa0346df85e50a8db0aa4baa141f3d40565af4ce))

## [1.10.0](https://github.com/lucasvtiradentes/gcal-sync/compare/v1.9.0...v1.10.0) (2024-01-26)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gcal-sync",
"description": "🔄 add an one way synchronization from ticktick tasks and github commits to google calendar and track your progress effortlessly.",
"version": "1.10.0",
"version": "1.11.0",
"keywords": [
"google-calendar",
"github",
Expand Down

0 comments on commit 7cb580e

Please sign in to comment.