tauri/.changes
2021-02-13 21:35:55 -03:00
..
appimage-path.md fix(bundler): appimage paths and filename (#1227) 2021-02-13 15:06:39 -03:00
cli-no-targets.md feat(cli/core): add support for building without targets (#1203) 2021-02-11 00:13:06 -03:00
cli-rust.md feat(cli) rewrite the core CLI in Rust (#851) 2021-01-30 12:15:47 -03:00
config-refactor.md refactor(tauri): support for building without environmental variables (#850) 2021-02-09 15:22:04 -03:00
config.json refactor(tauri): support for building without environmental variables (#850) 2021-02-09 15:22:04 -03:00
core-errors.md refactor(tauri): use explicit error types instead of anyhow (#1209) 2021-02-10 19:51:15 -03:00
css-inliner-octal.md fix(tauri/asset): escape octal sequences in css (#1166) 2021-01-30 15:46:18 -03:00
event.md feat(core): add mult-window support (#1217) 2021-02-11 21:50:39 -03:00
multiwindow.md feat(core): add mult-window support (#1217) 2021-02-11 21:50:39 -03:00
plugin-config.md feat(tauri): add plugin initialize (with config) API, run in parallel (#1194) 2021-02-10 00:49:46 -03:00
plugin-initialization-script.md refactor(tauri): rename init_script to initialization_script (#1200) 2021-02-10 02:24:20 -03:00
plugin-mutable.md refactor(tauri): plugin trait with mutable references (#1197) 2021-02-10 01:07:00 -03:00
plugin-ready-hook.md fix(tauri): run plugin::ready without webview.dispatch (#1164) 2021-01-29 09:22:17 +01:00
readme.md fix(tauri.js): fix return type for readBinaryFile api method (#927) 2020-08-07 19:56:29 -05:00
refactor-tauri-entry.md refactor(tauri): inject script with webview init API (#1186) 2021-02-05 12:45:43 -03:00
remove-no-server.md refactor(core): remove no-server and its APIs (#1215) 2021-02-11 02:33:18 -03:00
tauri-api.md feat(cli) rewrite the core CLI in Rust (#851) 2021-01-30 12:15:47 -03:00
tauri-async.md refactor(tauri): support for building without environmental variables (#850) 2021-02-09 15:22:04 -03:00
tauri-cli.md refactor(tauri): support for building without environmental variables (#850) 2021-02-09 15:22:04 -03:00
webview-traits.md refactor(tauri): Webview traits (#1183) 2021-02-05 00:44:58 -03:00
window-api.md feat(core): window API (#1225) 2021-02-13 21:35:55 -03:00
wry.md feat(tauri): use WRY as webview engine (#1190) 2021-02-08 11:19:22 -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 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:

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