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
12 changes: 12 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@ members = [
"maxima-resources",
]

# Inherited by ship-binary crates via `version.workspace = true`.
# Bumped at every release tag — single source of truth so we don't
# drift again the way maxima-cli / maxima-bootstrap / maxima-service
# / maxima-tui / maxima-ui did between #6 and v0.12.1.
#
# `maxima-lib` and `maxima-resources` opt out (they pin their own
# version on purpose — maxima-lib is a library whose version we
# embed in `FInstall.txt`'s `maxima_lib_version` field, and
# `maxima-resources` is a build-time helper crate).
[workspace.package]
version = "0.12.1"

[profile.release]
strip = true

Expand Down
2 changes: 1 addition & 1 deletion installer/maxima-setup.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
!define PRODUCT_NAME "Maxima"
!define PRODUCT_PUBLISHER "Armchair Developers"
!define PRODUCT_WEB_SITE "https://github.com/ArmchairDevelopers/Maxima"
!define PRODUCT_VERSION "0.5.0"
!define PRODUCT_VERSION "0.12.1"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"

Expand Down
2 changes: 1 addition & 1 deletion maxima-bootstrap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "maxima-bootstrap"
description = "Maxima handler for custom EA protocols"
version = "0.6.0"
version.workspace = true
authors = ["Sean Kahler <sean@battleda.sh>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion maxima-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "maxima-cli"
version = "0.6.0"
version.workspace = true
authors = ["Sean Kahler <sean@battleda.sh>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion maxima-service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "maxima-service"
version = "0.6.0"
version.workspace = true
authors = ["Sean Kahler <sean@battleda.sh>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion maxima-tui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "maxima-tui"
version = "0.1.0"
version.workspace = true
authors = ["Sean Kahler <sean@battleda.sh>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion maxima-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "maxima-ui"
version = "0.1.0"
version.workspace = true
authors = ["Nick Whelan <cooldood909@gmail.com>"]
edition = "2021"

Expand Down
Loading