tauri/.changes
2022-12-23 22:13:53 -03:00
..
additional-args-api.md feat(core): expose additional_browser_args to window config (fix: #5757) (#5799) 2022-12-14 11:46:24 -03:00
additional-args-config.md feat(core): expose additional_browser_args to window config (fix: #5757) (#5799) 2022-12-14 11:46:24 -03:00
additional-args.md feat(core): expose additional_browser_args to window config (fix: #5757) (#5799) 2022-12-14 11:46:24 -03:00
config.json feat(covector): improve published version check (#5783) 2022-12-08 09:49:55 -03:00
content-protection-api.md feat: add content protection api, closes #5132 (#5513) 2022-12-13 01:04:22 -03:00
content-protection-utils.md feat: add content protection api, closes #5132 (#5513) 2022-12-13 01:04:22 -03:00
content-protection.md feat: add content protection api, closes #5132 (#5513) 2022-12-13 01:04:22 -03:00
expose-set_device_event_filter-in-tauri-api.md expose set_device_event_filter in tauri (#5562) 2022-12-13 13:57:32 -03:00
fs-scope-metadata.md feat(core): metadata for runtime fs scope path additions, closes #5875 2022-12-23 22:13:53 -03:00
glob-match-require_literal_separator.md Merge pull request from GHSA-6mv3-wm7j-h4w5 2022-12-22 15:53:46 +02:00
is-minimized.md feat: add is_minimized (fix #3878) (#5618) 2022-12-12 10:34:19 -03:00
open-links-mail-tel.md feat(core): add support to mailto: and tel: links, closes #5521 (#5544) 2022-12-13 00:57:39 -03:00
readme.md chore: add covector readme (#5255) 2022-10-04 17:02:30 -03:00
tauri-build-windows-manifest.md feat(tauri-build): add option to specify Windows manifest, closes #5584 (#5730) 2022-12-14 12:18:46 -03:00
title-getter.md feat: add title getter on window, closes #5023 (#5515) 2022-12-13 00:59:09 -03:00
version-inheritance.md feat(cli): add support for Cargo's workspace inheritance for the package version, closes #5070 (#5775) 2022-12-14 13:39:05 -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 that it represents the overall change for organizational purposes.

When you select the version bump required, you do not need to consider dependencies. 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:

---
"package-a": patch
"package-b": patch
---

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).