Amr Bashir c94e1326a7 feat(bundler): add `nsis`, closes #4450, closes #2319 (#4674) 2 years ago
..
add-dylib-support-to-macos-frameworks.md ce76d95ab1 feat(tauri-cli): add dylib support to `tauri.bundle.macOS.frameworks`, closes #4615 (#5732) 2 years ago
additional-args-api.md 3dc38b150e feat(core): expose additional_browser_args to window config (fix: #5757) (#5799) 2 years ago
additional-args-config.md 3dc38b150e feat(core): expose additional_browser_args to window config (fix: #5757) (#5799) 2 years ago
additional-args.md 3dc38b150e feat(core): expose additional_browser_args to window config (fix: #5757) (#5799) 2 years ago
cli-info.md c2608423b6 fix(cli): don't panic when a crate version couldn't be parsed (#5873) 2 years ago
config.json 41a471b23a feat(covector): improve published version check (#5783) 2 years ago
content-protection-api.md 4ab5545b7a feat: add content protection api, closes #5132 (#5513) 2 years ago
content-protection-utils.md 4ab5545b7a feat: add content protection api, closes #5132 (#5513) 2 years ago
content-protection.md 4ab5545b7a feat: add content protection api, closes #5132 (#5513) 2 years ago
core-navigation-handler.md 3f35b45263 Expose wry navigation_handler via WindowBuilder closes #4080 (#5686) 2 years ago
core-sync-windows-metadata.md 146a794cb6 fix(core): sync windows metadata across all windows, closes #5571 (#5615) 2 years ago
custom-buttons-api.md 00e1efaa9b feat: customize button texts of message dialog (#4383) 2 years ago
custom-buttons.md 00e1efaa9b feat: customize button texts of message dialog (#4383) 2 years ago
custom-icon.md 9d2144128f feat(cli): add option to make custom icon sizes, closes #5121 (#5246) 2 years ago
expose-set_device_event_filter-in-tauri-api.md 73fd60eef2 expose set_device_event_filter in tauri (#5562) 2 years ago
fix-2549.md 4892637f83 fix: Resizing glitch on custom titlebar click (closes #2549) (#5966) 2 years ago
glob-match-require_literal_separator.md 72389b00d7 Merge pull request from GHSA-6mv3-wm7j-h4w5 2 years ago
heck-unicode.md 72621892fe fix(cli): use `unicode` feature for `heck` crate, closes #5860 (#5872) 2 years ago
is-minimized.md 62144ef3be feat: add is_minimized (fix #3878) (#5618) 2 years ago
nsis.md c94e1326a7 feat(bundler): add `nsis`, closes #4450, closes #2319 (#4674) 2 years ago
open-links-mail-tel.md d0d873e39a feat(core): add support to mailto: and tel: links, closes #5521 (#5544) 2 years ago
readme.md a5861d8294 chore: add covector readme (#5255) 2 years ago
runtime-navigation-handler.md 3f35b45263 Expose wry navigation_handler via WindowBuilder closes #4080 (#5686) 2 years ago
tauri-build-windows-manifest.md bca09f7f5f feat(tauri-build): add option to specify Windows manifest, closes #5584 (#5730) 2 years ago
title-getter.md 233e43b0c3 feat: add `title` getter on window, closes #5023 (#5515) 2 years ago
tray-tooltip-runtime.md 2265e09718 feat(windows): implement `with_tooltip` (#5938) 2 years ago
tray-tooltip.md 2265e09718 feat(windows): implement `with_tooltip` (#5938) 2 years ago
url-getter.md d17027e1a0 feat: expose url method (#5914) 2 years ago
version-inheritance.md cd8c074ae6 feat(cli): add support for Cargo's workspace inheritance for the package version, closes #5070 (#5775) 2 years ago
webview-theme.md 7a8d570db7 fix: sync webview theme with window theme on Windows, closes #5802 (#5874) 2 years ago
wix-launch-app-checked.md 89602cdce3 feat(bundler): check `Launch app` by default for WiX, closes #5859 (#5871) 2 years ago
wry-navigation-handler.md 3f35b45263 Expose wry navigation_handler via WindowBuilder closes #4080 (#5686) 2 years ago

readme.md

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