Skip to content

Commit dc03708

Browse files
author
Martin Møldrup
committed
Update changelog
1 parent e3c8a40 commit dc03708

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33

44
*NOTE:* Version 0.X.X might have breaking changes in bumps of the minor version number. This is because the project is still in early development and the API is not yet stable. It will still be marked clearly in the release notes.
55

6+
## [0.1.0] - 25-05-2025
7+
- Added a script to create a `.vscode/tasks.json` file for use in Visual Studio Code
8+
- Improved documentation with examples and usage instructions
9+
- Added new decorators for groups of commands. Can run a group of tools in sequence or in parallel. (only supported for tasks.json creation, so far)
10+
611
## [0.0.1] - 23-05-2025
712
- Initial release of toolit
813
- Basic functionality for creating tools that run for both MCP and typer cli

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "toolit"
3-
version = "0.0.1"
4-
description = "MCP Server and Typer CLI in one, provides an easy way to configure your own DevTools in a project."
3+
version = "0.1.0"
4+
description = "MCP Server, Typer CLI and vscode tasks in one, provides an easy way to configure your own DevTools and python scripts in a project."
55
readme = "README.md"
66
requires-python = ">=3.10"
77
dependencies = []
@@ -35,11 +35,11 @@ Issues = "https://github.com/martinmoldrup/toolit/issues"
3535
Changelog = "https://github.com/martinmoldrup/toolit/blob/master/CHANGELOG.md"
3636

3737
[dependency-groups]
38-
dev = [
39-
"mcp[cli]>=1.6.0",
40-
"pytest>=8.3.5",
41-
"pytest-asyncio>=0.26.0",
42-
"typer>=0.15.2",
38+
dev = [
39+
"mcp[cli]>=1.6.0",
40+
"pytest>=8.3.5",
41+
"pytest-asyncio>=0.26.0",
42+
"typer>=0.15.2",
4343
]
4444

4545
[project.scripts]

0 commit comments

Comments
 (0)