Skip to content

Commit

Permalink
🔖 tags: new version release 1.3.1 [skip ci]
Browse files Browse the repository at this point in the history
## [1.3.1](v1.3.0...v1.3.1) (2023-02-22)

### 🐛 bugfix:

* error when updating gcal events ([#56](#56)) ([7711dcf](7711dcf))
  • Loading branch information
semantic-release-bot committed Feb 22, 2023
1 parent 7711dcf commit 9bb11fe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ function getGcalSync() {
}
};

const version = "1.3.0" // version
const version = "1.3.1" // version
const gcalSyncContent = UrlFetchApp.fetch(`https://cdn.jsdelivr.net/npm/gcal-sync@${version}`).getContentText();
eval(`this.GcalSync = ` + gcalSyncContent);
const gcalSync = new GcalSync(configs);
Expand Down Expand Up @@ -255,7 +255,7 @@ If you want to contribute to the project, after you make the necessary changes,
function getGcalSyncContent(mode){

if (mode === 'production'){
const version = "1.3.0" // version
const version = "1.3.1" // version
return UrlFetchApp.fetch(`https://cdn.jsdelivr.net/npm/gcal-sync@${version}`).getContentText()
} else if (mode === 'development'){
const repository = "lucasvtiradentes/gcal-sync" // remember to update this
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.3.1](https://github.com/lucasvtiradentes/gcal-sync/compare/v1.3.0...v1.3.1) (2023-02-22)


### 🐛 bugfix:

* error when updating gcal events ([#56](https://github.com/lucasvtiradentes/gcal-sync/issues/56)) ([7711dcf](https://github.com/lucasvtiradentes/gcal-sync/commit/7711dcf5b2ab7495b35b0ccd8d8a4ab0659fbc42))

## [1.3.0](https://github.com/lucasvtiradentes/gcal-sync/compare/v1.2.4...v1.3.0) (2023-02-22)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gcal-sync",
"version": "1.3.0",
"version": "1.3.1",
"description": "🔄 a google apps script for syncing events between github to ticktick and finally both to google calendar.",
"license": "MIT",
"author": {
Expand Down

0 comments on commit 9bb11fe

Please sign in to comment.