diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d62873e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + # Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.) + directory: "/" + schedule: + interval: "weekly" + # Maintain dependencies for yarn + - package-ecosystem: "yarn" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml new file mode 100644 index 0000000..c695178 --- /dev/null +++ b/.github/workflows/releases.yml @@ -0,0 +1,32 @@ +name: Release + +on: + release: + types: [published] + +jobs: + build: + permissions: + contents: write + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '18.x' + - name: Build + run: | + yarn + yarn build + yarn zip + - name: Release with Notes + uses: softprops/action-gh-release@v1 + with: + files: | + main.js + manifest.json + styles.css + obsidian-tracker-*.zip + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 6c6b91d..07e1172 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,10 @@ Version 1.10.9 - Allow emojis in the folder path - Fixed bugs +Version 1.11.0 +* Add support for checkboxes in new properties added in Obsidian 1.4 +* Fix typos in documentation and examples + ## !!! Breaking Changes !!! From version 1.9.0, template variables, e.g. '{{sum}}', are deprecated. Instead, Tracker provide operators (+, -, *, /, %) and functions (dataset(), sum(), maxStreak(), ......etc) to help us do data processing. For users having code blocks from previous version, please replace '{{sum}}' by '{{sum()}}' or '{{sum(1)}}' by '{{sum(dataset(1))}}'. More information about the new expressions could be found [here](https://github.com/pyrochlore/obsidian-tracker/blob/master/docs/Expressions.md). diff --git a/manifest.json b/manifest.json index 773d983..5340f93 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-tracker", "name": "Tracker", - "version": "1.10.9", + "version": "1.11.0", "minAppVersion": "0.9.12", "description": "A plugin tracks occurrences and numbers in your notes", "author": "pyrochlore", diff --git a/package.json b/package.json index 9c3cde9..4c54b17 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-tracker", - "version": "1.10.9", + "version": "1.11.0", "description": "A plugin tracks occurrences and numbers in your notes", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 2e7ef45..b1fa38e 100644 --- a/versions.json +++ b/versions.json @@ -28,5 +28,6 @@ "1.10.6": "0.9.12", "1.10.7": "0.9.12", "1.10.8": "0.9.12", - "1.10.9": "0.9.12" + "1.10.9": "0.9.12", + "1.11.0": "0.9.12" }