chore: prepare release 4.3.2
Some checks are pending
CI / build (push) Waiting to run

This commit is contained in:
matt 2026-03-25 22:11:39 -07:00
parent b808f411ea
commit 3c834222f8
7 changed files with 41 additions and 6 deletions

View file

@ -13,7 +13,7 @@
# HOST=0.0.0.0 # Uvicorn bind host (only when APP_MODE=web).
# PORT=8080 # Uvicorn port.
# WORKERS=1 # Uvicorn worker count.
APP_VERSION=v4.3.1 # Matches dockerhub compose.
APP_VERSION=v4.3.2 # Matches dockerhub compose.
############################
# Theming

View file

@ -9,7 +9,7 @@ This format follows Keep a Changelog principles and aims for Semantic Versioning
## [Unreleased]
### Added
- **Smart Land Bases checkbox**: The New Deck modal Preferences section now has a **Smart Land Bases** checkbox (checked by default) to enable or disable smart land analysis per-build, replacing the `ENABLE_SMART_LANDS` environment variable.
_No unreleased changes yet_
### Changed
_No unreleased changes yet_
@ -17,6 +17,13 @@ _No unreleased changes yet_
### Fixed
_No unreleased changes yet_
### Removed
_No unreleased changes yet_
## [4.3.2] - 2026-03-25
### Added
- **Smart Land Bases checkbox**: The New Deck modal Preferences section now has a **Smart Land Bases** checkbox (checked by default) to enable or disable smart land analysis per-build, replacing the `ENABLE_SMART_LANDS` environment variable.
### Removed
- **`ENABLE_SMART_LANDS` environment variable**: Removed in favor of the per-build checkbox in the New Deck modal. Use `LAND_PROFILE` or `LAND_COUNT` for headless/CLI control.

View file

@ -2,7 +2,7 @@
## [Unreleased]
### Added
- **Smart Land Bases checkbox**: The New Deck modal now has a **Smart Land Bases** checkbox in the Preferences section (checked by default). Enables or disables smart land analysis per-build without needing environment variables.
_No unreleased changes yet_
### Changed
_No unreleased changes yet_
@ -10,6 +10,13 @@ _No unreleased changes yet_
### Fixed
_No unreleased changes yet_
### Removed
_No unreleased changes yet_
## [4.3.2] - 2026-03-25
### Added
- **Smart Land Bases checkbox**: The New Deck modal now has a **Smart Land Bases** checkbox in the Preferences section (checked by default). Enables or disables smart land analysis per-build without needing environment variables.
### Removed
- **`ENABLE_SMART_LANDS` environment variable**: Replaced by the per-build checkbox. Use `LAND_PROFILE` or `LAND_COUNT` for headless overrides.

View file

@ -142,7 +142,7 @@ services:
# WEB_THEME_FILTER_PREWARM: "0"
WEB_AUTO_ENFORCE: "0" # 1=auto-run compliance export after builds
WEB_CUSTOM_EXPORT_BASE: "" # Optional: custom base dir for deck export artifacts
APP_VERSION: "v4.3.1" # Displayed version label (set per release/tag)
APP_VERSION: "v4.3.2" # Displayed version label (set per release/tag)
# ------------------------------------------------------------------
# Misc / Land Selection (Step 7) Environment Tuning

View file

@ -144,7 +144,7 @@ services:
# WEB_THEME_FILTER_PREWARM: "0"
WEB_AUTO_ENFORCE: "0" # 1=auto-run compliance export after builds
WEB_CUSTOM_EXPORT_BASE: "" # Optional: custom base dir for deck export artifacts
APP_VERSION: "v4.3.1" # Displayed version label (set per release/tag)
APP_VERSION: "v4.3.2" # Displayed version label (set per release/tag)
# ------------------------------------------------------------------
# Misc / Land Selection (Step 7) Environment Tuning

21
docs/releases/v4.3.2.md Normal file
View file

@ -0,0 +1,21 @@
# MTG Python Deckbuilder v4.3.2
## Summary
Replaces the `ENABLE_SMART_LANDS` environment variable with a per-build **Smart Land Bases** checkbox in the New Deck modal, giving you direct control over smart land analysis without needing to configure environment variables.
## Added
### Smart Land Bases checkbox
The New Deck modal Preferences section now includes a **Smart Land Bases** checkbox (checked by default). Each build can independently enable or disable smart land analysis — no environment variable or container restart required.
- Checked (default): Smart land analysis runs as before — automatic land count, mana-base profile, and ETB tapped tolerance based on the commander's CMC and color complexity.
- Unchecked: Smart land analysis is skipped; land count and ratios use your configured defaults.
The preference is remembered across builds in the current session.
## Removed
### `ENABLE_SMART_LANDS` environment variable
The `ENABLE_SMART_LANDS` env var has been removed. The per-build checkbox in the New Deck modal replaces it for web UI usage.
For headless and CLI builds, smart land analysis runs by default. Use `LAND_PROFILE` or `LAND_COUNT` to override the profile or target count.

View file

@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "mtg-deckbuilder"
version = "4.3.1"
version = "4.3.2"
description = "A command-line tool for building and analyzing Magic: The Gathering decks"
readme = "README.md"
license = {file = "LICENSE"}