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
7 changes: 5 additions & 2 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]

## [0.8.0] - 2026-07-09

### Breaking

- **`mcp-execution-codegen`**, **`mcp-execution-skill`**: generated server directories now
Expand Down Expand Up @@ -1471,11 +1473,12 @@ Phase 6 (Optimization) is currently OPTIONAL and DEFERRED because:
---

**Last Updated**: 2026-07-09
**Version**: 0.7.2 (Production Ready)
**Version**: 0.8.0 (Production Ready)

---

[Unreleased]: https://github.com/bug-ops/mcp-execution/compare/v0.7.2...HEAD
[Unreleased]: https://github.com/bug-ops/mcp-execution/compare/v0.8.0...HEAD
[0.8.0]: https://github.com/bug-ops/mcp-execution/compare/v0.7.2...v0.8.0
[0.7.2]: https://github.com/bug-ops/mcp-execution/compare/v0.7.1...v0.7.2
[0.7.1]: https://github.com/bug-ops/mcp-execution/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/bug-ops/mcp-execution/compare/v0.6.6...v0.7.0
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default-members = [ "crates/*" ]
resolver = "3"

[workspace.package]
version = "0.7.2"
version = "0.8.0"
edition = "2024"
rust-version = "1.91"
authors = ["Andrei G <k05h31@gmail.com>"]
Expand All @@ -24,12 +24,12 @@ dhat = "0.3"
dialoguer = "0.12"
dirs = "6.0"
handlebars = "6.4"
mcp-execution-codegen = { path = "crates/mcp-codegen", version = "0.7.2" }
mcp-execution-core = { path = "crates/mcp-core", version = "0.7.2" }
mcp-execution-files = { path = "crates/mcp-files", version = "0.7.2" }
mcp-execution-introspector = { path = "crates/mcp-introspector", version = "0.7.2" }
mcp-execution-server = { path = "crates/mcp-server", version = "0.7.2" }
mcp-execution-skill = { path = "crates/mcp-skill", version = "0.7.2" }
mcp-execution-codegen = { path = "crates/mcp-codegen", version = "0.8.0" }
mcp-execution-core = { path = "crates/mcp-core", version = "0.8.0" }
mcp-execution-files = { path = "crates/mcp-files", version = "0.8.0" }
mcp-execution-introspector = { path = "crates/mcp-introspector", version = "0.8.0" }
mcp-execution-server = { path = "crates/mcp-server", version = "0.8.0" }
mcp-execution-skill = { path = "crates/mcp-skill", version = "0.8.0" }
rayon = "1.12"
regex = "1.12"
rmcp = "2.1"
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ Or add to `Cargo.toml`:

```toml
[dependencies]
mcp-execution-core = "0.7"
mcp-execution-introspector = "0.7"
mcp-execution-codegen = "0.7"
mcp-execution-core = "0.8"
mcp-execution-introspector = "0.8"
mcp-execution-codegen = "0.8"
```

</details>
Expand Down Expand Up @@ -197,7 +197,6 @@ mcp-execution-cli completions bash

- [Progressive Loading Tutorial](examples/progressive-loading-usage.md) - Complete guide
- [Claude Code Integration](crates/mcp-skill) - SKILL.md generation (`mcp-execution-cli skill`)
- [Architecture Overview](docs/ARCHITECTURE.md) - System architecture and design

## Development

Expand Down
2 changes: 1 addition & 1 deletion crates/mcp-codegen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Progressive loading TypeScript code generation for MCP tools. Achieves **98% tok

```toml
[dependencies]
mcp-execution-codegen = "0.7"
mcp-execution-codegen = "0.8"
```

Or with cargo-add:
Expand Down
2 changes: 1 addition & 1 deletion crates/mcp-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Foundation types, traits, and error handling for MCP Code Execution.

```toml
[dependencies]
mcp-execution-core = "0.7"
mcp-execution-core = "0.8"
```

Or with cargo-add:
Expand Down
2 changes: 1 addition & 1 deletion crates/mcp-files/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ In-memory virtual filesystem for MCP tools organization and export.

```toml
[dependencies]
mcp-execution-files = "0.7"
mcp-execution-files = "0.8"
```

Or with cargo-add:
Expand Down
2 changes: 1 addition & 1 deletion crates/mcp-introspector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ MCP server introspection using the official [rmcp](https://docs.rs/rmcp) SDK.

```toml
[dependencies]
mcp-execution-introspector = "0.7"
mcp-execution-introspector = "0.8"
```

Or with cargo-add:
Expand Down
2 changes: 1 addition & 1 deletion crates/mcp-skill/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Or add to your `Cargo.toml`:

```toml
[dependencies]
mcp-execution-skill = "0.7"
mcp-execution-skill = "0.8"
```

> [!IMPORTANT]
Expand Down
Loading
Loading