Browse Source

fix: #1517 had the wrong package reference in the changefile (#1538)

Jacob Bolda 4 years ago
parent
commit
ae14a3ff51
3 changed files with 1 additions and 5 deletions
  1. 1 1
      .changes/fix-js-api-import.md
  2. 0 1
      .changes/pre.json
  3. 0 3
      core/tauri/CHANGELOG.md

+ 1 - 1
.changes/fix-js-api-import.md

@@ -1,5 +1,5 @@
 ---
-"tauri": patch
+"api": patch
 ---
 
 TS was wrongly re-exporting the module.

+ 0 - 1
.changes/pre.json

@@ -8,7 +8,6 @@
     ".changes/cta-remove-tauri-from-vanilla.md",
     ".changes/cta-tauri-script.md",
     ".changes/event-once.md",
-    ".changes/fix-js-api-import.md",
     ".changes/nested-events.md",
     ".changes/sync-metadata.md"
   ]

+ 0 - 3
core/tauri/CHANGELOG.md

@@ -14,9 +14,6 @@
 
 - [ece243d](https://www.github.com/tauri-apps/tauri/commit/ece243d17c9c3ef8d2ba8e3b25b872aa6ea0b6ab) don't remove once listener on new thread ([#1506](https://www.github.com/tauri-apps/tauri/pull/1506)) on 2021-04-14
 
-- TS was wrongly re-exporting the module.
-  - [fcb3b48](https://www.github.com/tauri-apps/tauri/commit/fcb3b4857efa17d2a3717f32457e88b24520cc9b) fix: [#1512](https://www.github.com/tauri-apps/tauri/pull/1512) ([#1517](https://www.github.com/tauri-apps/tauri/pull/1517)) on 2021-04-19
-
 - Window and global events can now be nested inside event handlers. They will run as soon
   as the event handler closure is finished in the order they were called. Previously, calling
   events inside an event handler would produce a deadlock.