diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index a88f1777..111a4890 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -8,9 +8,9 @@ jobs: lint-and-check-formatting: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: "Use node version" - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: .nvmrc cache: 'npm' @@ -23,9 +23,9 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: "Use node version" - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: .nvmrc cache: 'npm' @@ -34,7 +34,7 @@ jobs: - name: "Build" run: npm run build - name: Archive production artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist-without-markdown path: | @@ -42,9 +42,9 @@ jobs: run-tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: "Use node version" - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: .nvmrc cache: 'npm' @@ -55,9 +55,9 @@ jobs: run-typecheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: "Use node version" - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: .nvmrc cache: 'npm' diff --git a/manifest.json b/manifest.json index b780e1db..aa67e045 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "quartz-syncer", "name": "Quartz Syncer", - "version": "1.1.7", + "version": "1.2.0", "minAppVersion": "0.12.0", "description": "Sync Obsidian Markdown for Quartz", "author": "Emile Bangma", diff --git a/package-lock.json b/package-lock.json index 4df61281..fc3a461d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "quartz-syncer", - "version": "1.1.7", + "version": "1.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "quartz-syncer", - "version": "1.1.7", + "version": "1.2.0", "license": "MIT", "dependencies": { "@octokit/core": "^5.0.0", diff --git a/package.json b/package.json index a441cd0c..724ac971 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "quartz-syncer", - "version": "1.1.7", + "version": "1.2.0", "description": "A plugin used for publishing notes to Quartz", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index e9098c5d..c70fbf56 100644 --- a/versions.json +++ b/versions.json @@ -1,4 +1,5 @@ { + "1.2.0": "0.12.0", "1.1.7": "0.12.0", "1.1.6": "0.12.0", "1.1.5": "0.12.0",