Bläddra i källkod

Apply Version Updates From Current Changes (#1499)

Co-authored-by: nothingismagick <nothingismagick@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
github-actions[bot] 4 år sedan
förälder
incheckning
345f2dbfc5

+ 0 - 5
.changes/cta-tauri-script.md

@@ -1,5 +0,0 @@
----
-"create-tauri-app": patch
----
-
-Fix adding `tauri` script to package.json

+ 0 - 5
.changes/js-api-dist.md

@@ -1,5 +0,0 @@
----
-"api": patch
----
-
-Missing the `files` property in the package.json which mean that the `dist` directory was not published and used.

+ 6 - 0
core/tauri/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-beta-rc.1]
+
+- Missing the `files` property in the package.json which mean that the `dist` directory was not published and used.
+  - Bumped due to a bump in api.
+  - [b2569a7](https://www.github.com/tauri-apps/tauri/commit/b2569a729a3caa88bdba62abc31f0665e1323aaa) fix(js-api): dist ([#1498](https://www.github.com/tauri-apps/tauri/pull/1498)) on 2021-04-15
+
 ## \[1.0.0-beta-rc.0]
 
 - internal refactoring of `Params` to allow for easier usage without a private trait with only 1 implementor.

+ 1 - 1
core/tauri/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri"
-version = "1.0.0-beta-rc.0"
+version = "1.0.0-beta-rc.1"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "web-programming" ]
 license = "Apache-2.0 OR MIT"

+ 5 - 0
tooling/api/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[1.0.0-beta-rc.1]
+
+- Missing the `files` property in the package.json which mean that the `dist` directory was not published and used.
+  - [b2569a7](https://www.github.com/tauri-apps/tauri/commit/b2569a729a3caa88bdba62abc31f0665e1323aaa) fix(js-api): dist ([#1498](https://www.github.com/tauri-apps/tauri/pull/1498)) on 2021-04-15
+
 ## \[1.0.0-beta-rc.0]
 
 - Add current working directory to the path api module.

+ 1 - 1
tooling/api/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/api",
-  "version": "1.0.0-beta-rc.0",
+  "version": "1.0.0-beta-rc.1",
   "description": "Tauri API definitions",
   "main": "./dist/index.js",
   "files": [

+ 6 - 0
tooling/cli.js/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-beta-rc.1]
+
+- Missing the `files` property in the package.json which mean that the `dist` directory was not published and used.
+  - Bumped due to a bump in cli.rs.
+  - [b2569a7](https://www.github.com/tauri-apps/tauri/commit/b2569a729a3caa88bdba62abc31f0665e1323aaa) fix(js-api): dist ([#1498](https://www.github.com/tauri-apps/tauri/pull/1498)) on 2021-04-15
+
 ## \[1.0.0-beta-rc.0]
 
 - Fixed missing 'App' variant & string promise instead of void promise.

+ 1 - 1
tooling/cli.js/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/cli",
-  "version": "1.0.0-beta-rc.0",
+  "version": "1.0.0-beta-rc.1",
   "description": "Command line interface for building Tauri apps",
   "bin": {
     "tauri": "./bin/tauri.js"

+ 6 - 0
tooling/cli.rs/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-beta-rc.1]
+
+- Missing the `files` property in the package.json which mean that the `dist` directory was not published and used.
+  - Bumped due to a bump in api.
+  - [b2569a7](https://www.github.com/tauri-apps/tauri/commit/b2569a729a3caa88bdba62abc31f0665e1323aaa) fix(js-api): dist ([#1498](https://www.github.com/tauri-apps/tauri/pull/1498)) on 2021-04-15
+
 ## \[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.

+ 1 - 1
tooling/cli.rs/Cargo.lock

@@ -2024,7 +2024,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "1.0.0-beta-rc.0"
+version = "1.0.0-beta-rc.1"
 dependencies = [
  "anyhow",
  "base64",

+ 1 - 1
tooling/cli.rs/Cargo.toml

@@ -2,7 +2,7 @@ workspace = { }
 
 [package]
 name = "tauri-cli"
-version = "1.0.0-beta-rc.0"
+version = "1.0.0-beta-rc.1"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2018"
 categories = [ "gui", "web-programming" ]

+ 5 - 0
tooling/create-tauri-app/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[1.0.0-beta-rc.1]
+
+- Fix adding `tauri` script to package.json
+  - [6c00e88](https://www.github.com/tauri-apps/tauri/commit/6c00e88e0ffa10eb7eecc312d66c5dde7dc03d0b) fix(cta): fix adding `tauri` script to package.json ([#1501](https://www.github.com/tauri-apps/tauri/pull/1501)) on 2021-04-15
+
 ## \[1.0.0-beta-rc.2]
 
 - CTA also needs the template directory published as it doesn't get bundled into the `dist` directory.

+ 2 - 2
tooling/create-tauri-app/package.json

@@ -1,6 +1,6 @@
 {
   "name": "create-tauri-app",
-  "version": "1.0.0-beta-rc.2",
+  "version": "1.0.0-beta-rc.1",
   "description": "Jump right into a Tauri App!",
   "bin": {
     "create-tauri-app": "./bin/create-tauri-app.js"
@@ -46,4 +46,4 @@
     "tslib": "^2.2.0",
     "typescript": "4.2.4"
   }
-}
+}