Skip to content

Commit

Permalink
Bump version to v2025.0.0-beta-4
Browse files Browse the repository at this point in the history
Signed-off-by: Jade Turner <[email protected]>
  • Loading branch information
spacey-sooty committed Oct 15, 2024
1 parent f61e3b9 commit 65ce572
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "choreo",
"version": "2025.0.0-beta-3",
"version": "2025.0.0-beta-4",
"description": "A graphical tool for planning time-optimized trajectories for autonomous mobile robots in the FIRST Robotics Competition.",
"homepage": "https://github.com/SleipnirGroup/Choreo",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion src-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "choreo-cli"
version = "2025.0.0-beta.3"
version = "2025.0.0-beta.4"
edition = "2021"
homepage = "https://github.com/SleipnirGroup/Choreo"
repository = "https://github.com/SleipnirGroup/Choreo.git"
Expand Down
2 changes: 1 addition & 1 deletion src-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "choreo-core"
version = "2025.0.0-beta.3"
version = "2025.0.0-beta.4"
edition = "2021"
homepage = "https://github.com/SleipnirGroup/Choreo"
repository = "https://github.com/SleipnirGroup/Choreo.git"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "choreo"
version = "2025.0.0-beta.3"
version = "2025.0.0-beta.4"
edition = "2021"
description = """\
A graphical tool for planning time-optimized trajectories for autonomous \
Expand Down
16 changes: 12 additions & 4 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"package": {
"productName": "Choreo",
"version": "2025.0.0-beta-3"
"version": "2025.0.0-beta-4"
},
"tauri": {
"allowlist": {
Expand Down Expand Up @@ -40,7 +40,13 @@
},
"bundle": {
"active": true,
"targets": ["appimage", "deb", "dmg", "nsis", "rpm"],
"targets": [
"appimage",
"deb",
"dmg",
"nsis",
"rpm"
],
"identifier": "org.sleipnirgroup",
"shortDescription": "Choreo",
"icon": [
Expand All @@ -54,7 +60,9 @@
"minimumSystemVersion": "13.3",
"signingIdentity": "-"
},
"externalBin": ["../target/choreo-cli"]
"externalBin": [
"../target/choreo-cli"
]
},
"security": {
"csp": null
Expand All @@ -63,7 +71,7 @@
{
"fullscreen": false,
"resizable": true,
"title": "Choreo v2025.0.0-beta-3",
"title": "Choreo v2025.0.0-beta-4",
"width": 1200,
"height": 800
}
Expand Down
2 changes: 2 additions & 0 deletions update_version.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/python3

"""
A utility script to update the version in multiple files.
Expand Down

0 comments on commit 65ce572

Please sign in to comment.