Skip to content

Commit bab472e

Browse files
Alex HolmbergAlex Holmberg
authored andcommitted
Merge branch 'main' of github.com:syncable-dev/syncable-cli into develop
2 parents 21bad80 + a91ba93 commit bab472e

4 files changed

Lines changed: 42 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,43 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [0.9.10](https://github.com/syncable-dev/syncable-cli/compare/v0.9.9...v0.9.10) - 2025-06-18
10+
11+
### Added
12+
13+
- exposing commands for lib
14+
15+
## [0.9.9](https://github.com/syncable-dev/syncable-cli/compare/v0.9.8...v0.9.9) - 2025-06-18
16+
17+
### Added
18+
19+
- added public refferences to main methods for mcp access
20+
- feat added windows support
21+
- readme updates
22+
23+
### Fixed
24+
25+
- improved security cmd, for further false postitive in terms of:
26+
27+
### Other
28+
29+
- Merge pull request #88 from syncable-dev/develop
30+
- *(deps)* bump colored from 2.2.0 to 3.0.0 ([#87](https://github.com/syncable-dev/syncable-cli/pull/87))
31+
- Merge branch 'main' of github.com:syncable-dev/syncable-cli into develop
32+
- *(deps)* bump env_logger from 0.10.2 to 0.11.8
33+
- Merge branch 'main' of github.com:syncable-dev/syncable-cli into develop
34+
- *(deps)* bump rustsec from 0.29.3 to 0.30.2
35+
- Merge branch 'develop' of github.com:syncable-dev/syncable-cli into develop
36+
- *(deps)* bump clap from 4.5.39 to 4.5.40
37+
- *(deps)* bump thiserror from 1.0.69 to 2.0.12
38+
- *(deps)* bump proptest from 1.6.0 to 1.7.0
39+
40+
## [0.9.8](https://github.com/syncable-dev/syncable-cli/compare/v0.9.7...v0.9.8) - 2025-06-12
41+
42+
### Other
43+
44+
- *(deps)* bump env_logger from 0.10.2 to 0.11.8
45+
946
## [0.9.7](https://github.com/syncable-dev/syncable-cli/compare/v0.9.6...v0.9.7) - 2025-06-11
1047

1148
### Fixed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "syncable-cli"
3-
version = "0.9.7"
3+
version = "0.9.10"
44
edition = "2024"
55
authors = ["Syncable Team"]
66
description = "A Rust-based CLI that analyzes code repositories and generates Infrastructure as Code configurations"

src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,16 @@ pub mod config;
3434
pub mod error;
3535
pub mod generator;
3636
pub mod handlers;
37+
pub mod handlers;
3738

3839
// Re-export commonly used types and functions
3940
pub use analyzer::{analyze_project, ProjectAnalysis};
4041
pub use error::{IaCGeneratorError, Result};
4142
pub use generator::{generate_dockerfile, generate_compose, generate_terraform};
4243
pub use handlers::*;
4344
use cli::Commands;
45+
pub use handlers::*;
46+
use cli::Commands;
4447

4548
/// The current version of the CLI tool
4649
pub const VERSION: &str = env!("CARGO_PKG_VERSION");

0 commit comments

Comments
 (0)