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
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### Added

### Changed

### Fixed

### Removed

## [0.11.0] — 2026-07-29

### Added

- `asimov doctor` checks an install rather than your projects: which `asimov` your shell
actually runs (and flags an older one shadowing it on `PATH`), whether a schedule is
installed and loaded, whether `~/.cache/asimov/` is readable and writable by you,
Expand Down Expand Up @@ -349,7 +359,8 @@ v0.8.0, after a `v0.9.0-beta.1`/`beta.2` testing round.
Initial public release.


[Unreleased]: https://github.com/AsimovMac/asimov/compare/v0.10.0...main
[Unreleased]: https://github.com/AsimovMac/asimov/compare/v0.11.0...main
[0.11.0]: https://github.com/AsimovMac/asimov/compare/v0.10.0...v0.11.0
[0.10.0]: https://github.com/AsimovMac/asimov/compare/v0.8.0...v0.10.0
[0.8.0]: https://github.com/django23/asimov/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/django23/asimov/compare/v0.6.4...v0.7.0
Expand Down
2 changes: 1 addition & 1 deletion asimov
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ trap 'rm -f "$ASIMOV_SIZE_LOG" "$ASIMOV_EXCLUDED_CACHE" "$ASIMOV_PATH_CACHE_TMP"
# @license MIT

# Keep ASIMOV_VERSION in sync with CHANGELOG and package managers (e.g. Homebrew).
readonly ASIMOV_VERSION='0.10.0'
readonly ASIMOV_VERSION='0.11.0'

print_usage() {
printf 'Usage: asimov [--dry-run] [--verbose] [--quiet] [--stats] [--no-read-cache] [--no-write-cache] [directory]\n'
Expand Down
8 changes: 7 additions & 1 deletion tests/doctor.bats
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,14 @@ require_non_root() {
}

@test "doctor reports the running version" {
# Derived from the script, never hardcoded: a literal here breaks on every
# release, which is exactly what it did on the bump to 0.11.0.
run_asimov --version
local version="$output"
[[ -n "$version" ]]

run_asimov doctor
[[ "$output" == *"0.10.0"* ]]
[[ "$output" == *"$version"* ]]
}

@test "doctor never modifies Time Machine exclusions" {
Expand Down
Loading