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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.4.1] - 2026-08-06

### Added

- **`make-run` is documented.** It shipped in 0.4.0 as the headline feature
Expand Down
9 changes: 9 additions & 0 deletions docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,18 @@ ______________________________________________________________________

- [ ] Every new script or library has a doc page under `docs/` or
`docs/libraries/`.

- [ ] New doc pages are wired into `nav` in `zensical.toml`.

Those two are enforced by `make docs-coverage`, which runs inside
`make lint` — a commit adding a script with no page fails before it
lands. They stay on the checklist because passing the gate is not the
same as the page being worth reading.

- [ ] Option tables, examples, and usage blocks are up to date.

- [ ] The strict build passes — it catches broken anchors the tests do not:

```bash
make docs-check
```
Expand Down
2 changes: 1 addition & 1 deletion jb.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "just-bashit"
version = "0.4.0"
version = "0.4.1"

[tools.install-deps]
source = "src/install-deps.sh"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pure = true

[project]
name = "just-bashit"
version = "0.4.0"
version = "0.4.1"
description = "Evolving set of auto-formatted, bats-tested, shellcheck-linted tools, templates, and more."
readme = "README.md"
requires-python = ">=3.9"
Expand Down Expand Up @@ -55,7 +55,7 @@ dev = [
]

[tool.bumpversion]
current_version = "0.4.0"
current_version = "0.4.1"
commit = true
tag = true
tag_name = "v{new_version}"
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/bashrc-template.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# TEMPLATE: bashrc-template.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################
# Opinionated, cross-distro interactive bash configuration. #
# #
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/datetime.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# LIBRARY: datetime.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################

# Enforce sourcing of the script by taking advantage of the fact that return
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/environment.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# LIBRARY: environment.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################

# Enforce sourcing of the script by taking advantage of the fact that return
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/file.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# LIBRARY: file.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################

# Enforce sourcing of the script by taking advantage of the fact that return
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/format.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# LIBRARY: format.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################

# Enforce sourcing of the script by taking advantage of the fact that return
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/function-template.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# LIBRARY: function-template.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################

# Enforce sourcing of the script by taking advantage of the fact that return
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/get-jb.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# ############################################################################
# SCRIPT: get-jb.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################
# Installs just-runit (just-buildit / jb / jbx) to ~/.local/bin. #
# #
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/inspect.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# EXECUTABLE: inspect.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################
# Query installed versions of system deps from a TOML deps file, plus system #
# and compiler info. Output is valid TOML (suitable as a lock file). #
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/install-deps.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# EXECUTABLE: install-deps.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################
set -euo pipefail
IFS=$'\n\t'
Expand Down
4 changes: 2 additions & 2 deletions src/just_bashit/just-runit
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# ############################################################################
# EXECUTABLE: just-runit (aliases: jb run, jbx) #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################
# Ephemeral bash tool runner. Fetch a script from a URL or namespace, call #
# an optional function, then discard — no installation, no env pollution. #
Expand All @@ -14,7 +14,7 @@ IFS=$'\n\t'

_CACHE_DIR="${XDG_CACHE_HOME:-$HOME/.cache}/just-runit"
_ME="$(basename "$0")"
_VERSION="0.4.0"
_VERSION="0.4.1"
_DEFAULT_TTL=3600

# Default namespace base URL (just-buildit org pages root).
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/logging.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# LIBRARY: logging.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################

# Enforce sourcing of the script by taking advantage of the fact that return
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/make-run.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# LIBRARY: make-run.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################
# Resolve and run a repository's make targets and command variables from #
# that repository's OWN Makefile, so callers never carry a second copy of a #
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/match.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# LIBRARY: match.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################

PATTERN_BGN='^'
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/network.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# LIBRARY: network.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################

# Enforce sourcing of the script by taking advantage of the fact that return
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/path.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# LIBRARY: path.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################

# Enforce sourcing of the script by taking advantage of the fact that return
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/pkg.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# LIBRARY: pkg.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################
# Package manager detection and version querying. #
# ############################################################################
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/profile-template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# shellcheck shell=sh
# ############################################################################
# TEMPLATE: profile-template.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################
# Environment for EVERY shell — login, non-login, interactive and NOT. #
# #
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/script-template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# EXECUTABLE: script-template #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################
set -euo pipefail
IFS=$'\n\t'
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/setup-system.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# EXECUTABLE: setup-system.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################
# One command to take a freshly installed machine to a working one: system #
# packages, shell configuration, ssh, git defaults, and dev tooling. Every #
Expand Down
2 changes: 1 addition & 1 deletion src/just_bashit/toml.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# ############################################################################
# LIBRARY: toml.sh #
# PACKAGE: just-bashit version 0.4.0 #
# PACKAGE: just-bashit version 0.4.1 #
# ############################################################################
# Pure-bash parser for the TOML subset used by just-bashit dependency files:#
# [group.pm] sections with packages = [...] and cmd = [...] arrays. #
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

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

Loading