Releases: bytware/whiteout
Releases · bytware/whiteout
Whiteout v1.0.0
Whiteout v1.0.0 - Initial Release
🎉 Features
- Git Filter Integration: Seamlessly integrates with Git clean/smudge filters to prevent secrets from being committed
- Multiple Decoration Patterns:
- Inline decorations:
// @whiteout: replacement - Block decorations:
@whiteout-start/@whiteout-end - Partial replacements:
[[local||committed]]
- Inline decorations:
- Language Agnostic: Works with any programming language that supports comments
- Local Storage: Securely stores local values in
.whiteout/local.toml - Branch Support: Maintains different local values per Git branch
- Easy Setup: Simple installation script and initialization commands
📦 Installation
# Clone and install
git clone https://github.com/bytware/whiteout.git
cd whiteout
./install.sh🚀 Getting Started
# Initialize in your project
whiteout init
# Mark secrets in your code
API_KEY="secret123" // @whiteout: "placeholder"
# Commit safely - secrets stay local!
git add . && git commit -m "Safe commit"📚 Documentation
See the README for full documentation and examples.
🤖 Generated with Claude Code