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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[Unreleased]: https://github.com/codemod-pilot/codemod-pilot/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/codemod-pilot/codemod-pilot/releases/tag/v0.1.0

## [0.1.1] - 2026-04-08
### Changed
- Updated README documentation
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
]

[workspace.package]
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["codemod-pilot contributors"]
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/codemod-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ name = "codemod-pilot"
path = "src/main.rs"

[dependencies]
codemod-core = { path = "../codemod-core", version = "0.1.0" }
codemod-languages = { path = "../codemod-languages", version = "0.1.0" }
codemod-core = { path = "../codemod-core", version = "0.1.1" }
codemod-languages = { path = "../codemod-languages", version = "0.1.1" }
clap.workspace = true
colored.workspace = true
similar.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/codemod-languages/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories.workspace = true
description = "Language support plugins for codemod-pilot"

[dependencies]
codemod-core = { path = "../codemod-core", version = "0.1.0" }
codemod-core = { path = "../codemod-core", version = "0.1.1" }
tree-sitter.workspace = true
tree-sitter-javascript.workspace = true
tree-sitter-typescript.workspace = true
Expand Down
Loading