create-conformal 0.13.1 → 0.13.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # create-conformal
2
2
 
3
+ ## 0.13.2
4
+
5
+ ### Patch Changes
6
+
7
+ - c7bc932: override wray with crate patch to workaround bug
8
+
3
9
  ## 0.13.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "commander": "^14.0.3"
7
7
  },
8
8
  "name": "create-conformal",
9
- "version": "0.13.1",
9
+ "version": "0.13.2",
10
10
  "description": "Project generator script for conformal projects",
11
11
  "homepage": "https://russellmcc.github.io/conformal",
12
12
  "bugs": "https://github.com/russellmcc/conformal/issues",
package/package.json.bak CHANGED
@@ -6,7 +6,7 @@
6
6
  "commander": "^14.0.3"
7
7
  },
8
8
  "name": "create-conformal",
9
- "version": "0.13.1",
9
+ "version": "0.13.2",
10
10
  "description": "Project generator script for conformal projects",
11
11
  "homepage": "https://russellmcc.github.io/conformal",
12
12
  "bugs": "https://github.com/russellmcc/conformal/issues",
@@ -25,3 +25,7 @@ default_trait_access = "allow"
25
25
 
26
26
  [profile.release]
27
27
  lto = "thin"
28
+
29
+ # We need to patch for https://github.com/tauri-apps/wry/issues/1675
30
+ [patch.crates-io]
31
+ wry = { git = "https://github.com/tauri-apps/wry.git", rev = "40a703214d3e66942edf6f6a96074580798d5046" }