Skip to content
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0]

### Added

- [#18](https://github.com/pytauri/create-pytauri-app/pull/18) - feat: bump `pytauri` to `v0.8`.

- bump `pytauri` monorepo to `v0.8`
- bump `python-build-standard` to `20250828`

### Changed

- [#16](https://github.com/pytauri/create-pytauri-app/pull/16) - fix(build): bump `setuptools >= 80` for `build-system`.
Expand Down Expand Up @@ -56,6 +65,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.0]

[unreleased]: https://github.com/pytauri/create-pytauri-app/tree/HEAD
[0.4.0]: https://github.com/pytauri/create-pytauri-app/releases/tag/v0.4.0
[0.3.0]: https://github.com/pytauri/create-pytauri-app/releases/tag/v0.3.0
[0.2.0]: https://github.com/pytauri/create-pytauri-app/releases/tag/v0.2.0
[0.1.0]: https://github.com/pytauri/create-pytauri-app/releases/tag/v0.1.0
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "create-pytauri-app",
"private": true,
"version": "0.2.0",
"version": "0.1.0",
"type": "module",
"scripts": {},
"dependencies": {
Expand All @@ -10,7 +10,7 @@
"react-dom": "^18.3.1",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"tauri-plugin-pytauri-api": "^0.7.0"
"tauri-plugin-pytauri-api": "^0.8.0"
},
"devDependencies": {
"vue-tsc": "^2.1.10",
Expand Down
17 changes: 11 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "create-pytauri-app"
version = "0.1.0"
requires-python = ">=3.9"
dependencies = [
"pytauri == 0.7.*",
"pytauri == 0.8.*",
"pydantic == 2.*",
"anyio == 4.*",
# [build-system]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"react-dom": "^18.3.1",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"tauri-plugin-pytauri-api": "^0.7.0"
"tauri-plugin-pytauri-api": "^0.8.0"
},
"devDependencies": {
"@types/react": "^18.3.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"tauri-plugin-pytauri-api": "^0.7.0"
"tauri-plugin-pytauri-api": "^0.8.0"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.6",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"vue": "^3.5.13",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"tauri-plugin-pytauri-api": "^0.7.0"
"tauri-plugin-pytauri-api": "^0.8.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

### Argument ###

PYTHON_VERSION="3.13.3" # update these by yourself
TAG="20250409" # update these by yourself
PYTHON_VERSION="3.13.7" # update these by yourself
TAG="20250828" # update these by yourself
TARGET="x86_64-unknown-linux-gnu"

################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

### Argument ###

PYTHON_VERSION="3.13.3" # update these by yourself
TAG="20250409" # update these by yourself
PYTHON_VERSION="3.13.7" # update these by yourself
TAG="20250828" # update these by yourself
TARGET="aarch64-apple-darwin"

################
Expand All @@ -19,5 +19,5 @@ mkdir "$DEST_DIR"
curl -L "$url" | tar -xz -C "$DEST_DIR"

# ref: <https://github.com/pytauri/pytauri/issues/99#issuecomment-2704556726>
python_major_minor="${PYTHON_VERSION%.*}" # "3.13.3" -> "3.13"
python_major_minor="${PYTHON_VERSION%.*}" # "3.13.7" -> "3.13"
install_name_tool -id "@rpath/libpython$python_major_minor.dylib" "$DEST_DIR/python/lib/libpython$python_major_minor.dylib"
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
### Argument ###

$PYTHON_VERSION = "3.13.3" # update these by yourself
$TAG = "20250409" # update these by yourself
$PYTHON_VERSION = "3.13.7" # update these by yourself
$TAG = "20250828" # update these by yourself
$TARGET = "x86_64-pc-windows-msvc"

################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ tauri-plugin-opener = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
pyo3 = { version = "0.25" }
pytauri = { version = "0.7", features = [] }
tauri-plugin-pytauri = { version = "0.7" }
pytauri = { version = "0.8", features = [] }
tauri-plugin-pytauri = { version = "0.8" }
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
]
requires-python = ">=3.9"
dependencies = [
"pytauri == 0.7.*",
"pytauri == 0.8.*",
"pydantic == 2.*",
"anyio == 4.*"
]
Expand Down
8 changes: 4 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.