Skip to content

Commit

Permalink
🔖 tags: new version release 1.5.0 [skip ci]
Browse files Browse the repository at this point in the history
## [1.5.0](v1.4.0...v1.5.0) (2023-02-25)

### ✨ feature:

* add way to sync private repo commits ([#60](#60)) ([df8b7e7](df8b7e7))
  • Loading branch information
semantic-release-bot committed Feb 25, 2023
1 parent df8b7e7 commit 525e65f
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 @@ -198,7 +198,7 @@ function getGcalSync() {
}
};

const version = "1.4.0" // version
const version = "1.5.0" // 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 @@ -273,7 +273,7 @@ If you want to contribute to the project, after you make the necessary changes,
function getGcalSyncContent(mode){

if (mode === 'production'){
const version = "1.4.0" // version
const version = "1.5.0" // 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.5.0](https://github.com/lucasvtiradentes/gcal-sync/compare/v1.4.0...v1.5.0) (2023-02-25)


### ✨ feature:

* add way to sync private repo commits ([#60](https://github.com/lucasvtiradentes/gcal-sync/issues/60)) ([df8b7e7](https://github.com/lucasvtiradentes/gcal-sync/commit/df8b7e719adc433ed63eced90f3ed6d944ad1ce2))

## [1.4.0](https://github.com/lucasvtiradentes/gcal-sync/compare/v1.3.1...v1.4.0) (2023-02-24)


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.4.0",
"version": "1.5.0",
"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 525e65f

Please sign in to comment.