Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply Version Updates From Current Changes #1486

Merged
merged 2 commits into from
Apr 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .changes/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,13 +175,6 @@
}
]
},
"create-tauri-app": {
"path": "./tooling/create-tauri-app",
"manager": "javascript",
"dependencies": [
"cli.js"
]
},
"tauri-utils": {
"path": "./core/tauri-utils",
"manager": "rust"
Expand All @@ -208,6 +201,10 @@
"api",
"tauri-macros"
]
},
"create-tauri-app": {
"path": "./tooling/create-tauri-app",
"manager": "javascript"
}
}
}
10 changes: 0 additions & 10 deletions .changes/no-private-params-trait.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/update-wry.md

This file was deleted.

8 changes: 8 additions & 0 deletions core/tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## \[1.0.0-beta-rc.0]

- internal refactoring of `Params` to allow for easier usage without a private trait with only 1 implementor.
`ParamsPrivate` -> `ParamsBase`
`ManagerPrivate` -> `ManagerBase`
(new) `Args`, crate only. Now implements `Params`/`ParamsBase`.
`App` and `Window` use `WindowManager` directly
- [ec27ca8](https://www.github.com/tauri-apps/tauri/commit/ec27ca81fe721e0b08ed574073547250b7a8153a) refactor(tauri): remove private params trait methods ([#1484](https://www.github.com/tauri-apps/tauri/pull/1484)) on 2021-04-14
- Updated `wry`, fixing an issue with the draggable region.
- [f2d24ef](https://www.github.com/tauri-apps/tauri/commit/f2d24ef2fbd95ec7d3433ba651964f4aa3b7f48c) chore(deps): update wry ([#1482](https://www.github.com/tauri-apps/tauri/pull/1482)) on 2021-04-14
- Now Tauri commands always returns Promise<T>.
- [ea73325](https://www.github.com/tauri-apps/tauri/commit/ea7332539d100bd63f93396101ffa01ff73c924b) refactor(core): all API are now promise based ([#1239](https://www.github.com/tauri-apps/tauri/pull/1239)) on 2021-02-16
- Rename macOS bundle settings from `osx` to `macOS`.
Expand Down
2 changes: 1 addition & 1 deletion tooling/cli.rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT"
homepage = "https://tauri.studio"
repository = "https://github.com/tauri-apps/tauri"
description = "Command line interface for building Tauri apps"
include = ["src/", "/templates", "MergeModules/", "*.json", "*.rs"]
include = [ "src/", "/templates", "MergeModules/", "*.json", "*.rs" ]

[[bin]]
name = "cargo-tauri"
Expand Down