Skip to content
Merged
Show file tree
Hide file tree
Changes from 13 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
11 changes: 11 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# .coderabbit.yaml
reviews:
path_filters:
# Use "! " at the start of a pattern to EXCLUDE it from the review
- "! docs/**" # Ignore everything in the docs directory
- "! documentation/**" # Ignore another common directory name
- "! static/docs/**" # Ignore nested doc folders
- "! **/*.md" # Ignore all Markdown files
- "! **/*.pdf" # Ignore PDF files
- "! **/*.txt" # Ignore text files
- "! **/vendor/**" # Pro-tip: Also ignore third-party code to save count
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
12 changes: 9 additions & 3 deletions .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,19 @@
"access": "public"
},
"hooks": {
"before:init": ["npm test"],
"after:bump": ["npm run build"]
"before:init": [
"npm test"
],
"after:bump": [
"npm version ${version} -w @magmacomputing/tempo -w @magmacomputing/library --no-git-tag-version",
"npm run build:library",
"npm run build:tempo"
]
},
"plugins": {
"@release-it/keep-a-changelog": {
"head": "## [Unreleased]",
"filename": "CHANGELOG.md"
}
}
}
}
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.1] - 2026-04-03
## [Unreleased]

### Added
- **VitePress Documentation**: Launched a modern, searchable documentation site powered by VitePress and TypeDoc.
- **Proxy-Delegator Pattern**: Refined the lazy-evaluation engine for $O(1)$ property access.
- **Scan-and-Consume Guard**: Implemented high-performance token matching for v2.1.2 stabilization.

## [2.1.2] - 2026-04-16

### Added
- **Ticker Stability Guard**: Implemented a 10,000-iteration safety break in `resolveTermShift` to prevent infinite loops when resolving malformed or non-advancing custom terms.
Expand Down
Loading