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 @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0] - 2026-03-31

### Fixed
- **Homebrew command construction (P0)**: `get_all_homebrew_casks()` now uses
`brew info --json=v2 --eval-all --cask` via `run_command_secure()` (argv list,
Expand Down
4 changes: 2 additions & 2 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Project Health

- **Version**: 0.9.0 (beta — stabilisation in progress)
- **Version**: 1.0.0 (stable)
- **Tests**: 2,158 passing, 15 skipped
- **Coverage**: ~78% overall
- **CI/CD**: All workflows passing on master (all green)
Expand Down Expand Up @@ -169,7 +169,7 @@ For detailed strategic planning see `docs/future_roadmap.md`.
### Advanced Contributions

- MacPorts integration
- P3: Lazy config initialisation
- Coverage push toward 85% (currently ~83.5%)

---

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "macversiontracker"
version = "0.9.0"
version = "1.0.0"
description = "A command-line tool for tracking and managing applications installed outside of the Mac App Store"
readme = "README.md"
license = "MIT"
Expand All @@ -14,7 +14,7 @@ authors = [
]
keywords = ["macos", "homebrew", "version", "tracking", "updates", "cask"]
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Intended Audience :: End Users/Desktop",
Expand Down
2 changes: 1 addition & 1 deletion versiontracker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from typing import Any

__version__ = "0.9.0"
__version__ = "1.0.0"

from versiontracker.config import Config, get_config
from versiontracker.exceptions import (
Expand Down
Loading