Skip to content

Commit

Permalink
apply version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jbolda committed Apr 14, 2021
1 parent ec27ca8 commit 54b1d38
Show file tree
Hide file tree
Showing 10 changed files with 63 additions and 20 deletions.
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.

13 changes: 13 additions & 0 deletions core/tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## \[1.0.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

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

- Now Tauri commands always returns Promise<T>.
Expand Down
2 changes: 1 addition & 1 deletion core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "1.0.0-beta-rc.0"
version = "1.0.0"
authors = [
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
Expand Down
15 changes: 15 additions & 0 deletions tooling/cli.js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## \[1.0.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

- Bumped due to a bump in cli.rs.
- [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.
- Bumped due to a bump in cli.rs.
- [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

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

- Fixed missing 'App' variant & string promise instead of void promise.
Expand Down
2 changes: 1 addition & 1 deletion tooling/cli.js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/cli",
"version": "1.0.0-beta-rc.0",
"version": "1.0.0",
"description": "Command line interface for building Tauri apps",
"bin": {
"tauri": "./bin/tauri.js"
Expand Down
15 changes: 15 additions & 0 deletions tooling/cli.rs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## \[1.0.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

- Bumped due to a bump in tauri.
- [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.
- Bumped due to a bump in tauri.
- [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

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

- You can now run `cargo tauri build -t none` to speed up the build if you don't need executables.
Expand Down
4 changes: 2 additions & 2 deletions tooling/cli.rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ workspace = { }

[package]
name = "tauri-cli"
version = "1.0.0-beta-rc.0"
version = "1.0.0"
authors = [ "Lucas Nogueira <lucas@tauri.studio>" ]
edition = "2018"
categories = [ "gui", "web-programming" ]
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
15 changes: 15 additions & 0 deletions tooling/create-tauri-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## \[1.0.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

- Bumped due to a bump in cli.js.
- [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.
- Bumped due to a bump in cli.js.
- [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

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

- Add vanilla javascript option to `create-tauri-app` through templating.
Expand Down
2 changes: 1 addition & 1 deletion tooling/create-tauri-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-tauri-app",
"version": "1.0.0-beta-rc.0",
"version": "1.0.0",
"description": "Jump right into a Tauri App!",
"bin": {
"create-tauri-app": "./bin/create-tauri-app.js"
Expand Down

0 comments on commit 54b1d38

Please sign in to comment.