Skip to content

Commit 82aaadd

Browse files
committed
release: v0.5.0 — ubuntu/ migration
Eight new commands across three new sub-trees (db / web / stack) plus two cross-cutting primitives (core/version, core/docker) landed via PR #7 (squash-merged as 955f433). Cutting v0.5.0 to publish the migrated surface. Highlights: - `shimkit db <engine>` — container-first databases (mysql, mariadb, postgres, mongo, phpmyadmin). No host-install path. - `shimkit web nginx vhost` — hardened vhost generator with opt-in SEVERE apply. - `shimkit stack lemp` — 3-container LEMP recipe (db + php-fpm + nginx) with bind-mounted project root. - `shimkit shell colors` — 256-color palette diagnostic. - `core/version` — tool-version detection + constraint enforcement (5 detectors: docker, nginx, git, gpg, python). Wired into `docker-clean`, `db`, `stack`, and the `gpg git-signing` paths. - `core/docker.DockerEnv` — shimkit chokepoint for the docker-py SDK; standard container/volume naming + network helpers. Test count: 351 → 503 (+152). Gates: pytest/ruff/mypy/bandit all green. No new optional extras (reuses [docker-clean]). Legacy `ubuntu/` source archived at .design/archive/ and removed; SHA-256 recorded in `.design/plans/validation-report.md`. Skipped features documented in `.design/plans/feature-gap-analysis.md`.
1 parent 955f433 commit 82aaadd

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
66

77
## [Unreleased]
88

9+
## [0.5.0] — 2026-05-15
10+
911
### Migration
1012

1113
Migrated the legacy `ubuntu/` server-provisioning scripts into

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "shimkit"
7-
version = "0.4.0"
7+
version = "0.5.0"
88
description = "A toolkit of developer utilities — Java version manager, shell upgrader, and more. Python tools, shimmed by bash."
99
readme = "README.md"
1010
license = { file = "LICENSE" }

src/shimkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
Python tools, shimmed by bash.
44
"""
55

6-
__version__ = "0.4.0"
6+
__version__ = "0.5.0"
77
__all__ = ["__version__"]

0 commit comments

Comments
 (0)