tauri/.changes
Jacob Bolda d09180fd89
chore: covector tweaks for smoothness (#865)
* reorder packages that core is published last

* general ledger comment, not just npm

* we do want to create releases

* leading ! does not seem to negate

* dump a bunch of info to debug
2020-07-19 23:34:16 -05:00
..
appimage-container.md fix(changes) covector status pass 2020-07-14 11:54:52 -03:00
bundler-output.md refactor(bundler) standard output names and path (#823) 2020-07-13 18:41:22 -03:00
config.json chore: covector tweaks for smoothness (#865) 2020-07-19 23:34:16 -05:00
fix-fs-api.md fix(tauri.js) writeFile and writeBinaryFile API (#857) 2020-07-19 09:57:40 -03:00
js-prompt.md chore(changes) add tauri-api to JS dialogs changefile 2020-07-19 23:50:59 -03:00
notificaiton-fix.md fix(tauri) notification body optional, requestPermission() regression, closes #793 (#844) 2020-07-16 19:17:41 -03:00
notification-permission-regression.md fix(tauri) notification body optional, requestPermission() regression, closes #793 (#844) 2020-07-16 19:17:41 -03:00
plugin-system.md feat(tauri) add plugin system for rust (#494) 2020-07-12 19:36:11 -03:00
promisified-leak.md fix(api) promisified not cleaning up transformed callbacks, fixes #852 (#853) 2020-07-18 17:05:32 -03:00
readme.md feature: implement version change PR (#676) 2020-06-15 15:29:22 +02:00
refactor-whitelist.md refactor(tauri) rename whitelist to allowlist, ref #645 (#858) 2020-07-19 10:05:23 -03:00
tauri-cli-admin.md fix(tauri.js) exit dev when running as admin, fixes #781 (#839) 2020-07-15 20:05:07 -03:00
tauri-info-outdated.md feat(tauri.js) print outdated deps information on tauri info (#841) 2020-07-15 20:39:28 -03:00
tauri-init.md fix(tauri.js) app name as kebab case (#856) 2020-07-19 09:57:28 -03:00
tauri-package-json.md fix(tauri.js) do not require a package.json (#855) 2020-07-19 09:57:09 -03:00
tauri-webview.md feature: import official webview rust binding (#846) 2020-07-18 08:04:22 -03:00
tauri.js-dependency-manager.md feat(tauri.js) add dependency manager command (#829) 2020-07-15 18:01:37 -03:00
tauri.js-install-on-init.md feat(tauri.js) run deps install after tauri init (#842) 2020-07-15 21:56:31 -03:00
taurijs_move_api_types_into_api.md feat(tauri.js) move exported api types into api modules (fix #807) (#809) 2020-07-12 19:34:44 -03:00

Changes

via https://github.com/jbolda/covector

As you create PRs and make changes that require a version bump, please add a new markdown file in this folder. You do not note the version number, but rather the type of bump that you expect: major, minor, or patch. The filename is not important, as long as it is a .md, but we recommend it represents the overall change for our sanity.

When you select the version bump required, you do not need to consider depedencies. Only note the package with the actual change, and any packages that depend on that package will be bumped automatically in the process.

Use the following format:

---
"tauri.js": patch
"tauri": minor
---

Change summary goes here

Summaries do not have a specific character limit, but are text only. These summaries are used within the (future implementation of) changelogs. They will give context to the change and also point back to the original PR if more details and context are needed.

Changes will be designated as a major, minor or patch as further described in semver.

Given a version number MAJOR.MINOR.PATCH, increment the:

  • MAJOR version when you make incompatible API changes,
  • MINOR version when you add functionality in a backwards compatible manner, and
  • PATCH version when you make backwards compatible bug fixes.

Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format, but will be discussed prior to usage (as extra steps will be necessary in consideration of merging and publishing).