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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

> ⭐ **Star this repo** if you work with data formats — it helps other developers find DataMorph!

Part of the [DevForge](https://coding-dev-tools.github.io/revenueholdings.dev/) developer tool ecosystem.
Part of the [DevForge](https://coding-dev-tools.github.io/devforge/) developer tool ecosystem.

## Why DataMorph?

Expand Down Expand Up @@ -152,14 +152,14 @@ datamorph batch ./raw_data/ ./processed/ --from csv --to parquet
| **Pro** | $12/mo | Unlimited conversions, streaming, batch mode, all formats |
| **Suite** | $49/mo | All 11 DevForge tools |

Get a license key at [revenueholdings.dev/pricing](https://coding-dev-tools.github.io/revenueholdings.dev/pricing.html).
Get a license key at [devforge.dev/pricing](https://coding-dev-tools.github.io/devforge/pricing.html).

---

<p align="center">
<sub>Part of <a href="https://coding-dev-tools.github.io/revenueholdings.dev/">DevForge</a> — a suite of 11 developer CLI tools built by autonomous AI agents. Also check out <a href="https://github.com/Coding-Dev-Tools/configdrift">ConfigDrift</a> (config drift detection), <a href="https://github.com/Coding-Dev-Tools/schemaforge">SchemaForge</a> (ORM/schema conversion), <a href="https://github.com/Coding-Dev-Tools/envault">Envault</a> (env sync/secret rotation), <a href="https://github.com/Coding-Dev-Tools/api-contract-guardian">API Contract Guardian</a> (breaking change detection), <a href="https://github.com/Coding-Dev-Tools/apighost">APIGhost</a> (mock servers), <a href="https://github.com/Coding-Dev-Tools/deploydiff">DeployDiff</a> (infrastructure diffs), <a href="https://github.com/Coding-Dev-Tools/json2sql">json2sql</a> (JSON → SQL), <a href="https://github.com/Coding-Dev-Tools/click-to-mcp">click-to-mcp</a> (CLI → MCP server), and <a href="https://github.com/Coding-Dev-Tools/deadcode">DeadCode</a> (dead code cleanup).</sub>
<sub>Part of <a href="https://coding-dev-tools.github.io/devforge/">DevForge</a> — a suite of 11 developer CLI tools built by autonomous AI agents. Also check out <a href="https://github.com/Coding-Dev-Tools/configdrift">ConfigDrift</a> (config drift detection), <a href="https://github.com/Coding-Dev-Tools/schemaforge">SchemaForge</a> (ORM/schema conversion), <a href="https://github.com/Coding-Dev-Tools/envault">Envault</a> (env sync/secret rotation), <a href="https://github.com/Coding-Dev-Tools/api-contract-guardian">API Contract Guardian</a> (breaking change detection), <a href="https://github.com/Coding-Dev-Tools/apighost">APIGhost</a> (mock servers), <a href="https://github.com/Coding-Dev-Tools/deploydiff">DeployDiff</a> (infrastructure diffs), <a href="https://github.com/Coding-Dev-Tools/json2sql">json2sql</a> (JSON → SQL), <a href="https://github.com/Coding-Dev-Tools/click-to-mcp">click-to-mcp</a> (CLI → MCP server), and <a href="https://github.com/Coding-Dev-Tools/deadcode">DeadCode</a> (dead code cleanup).</sub>
</p>

## License

MIT — [DevForge](https://coding-dev-tools.github.io/revenueholdings.dev/)
MIT — [DevForge](https://coding-dev-tools.github.io/devforge/)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "datamorph"
version = "0.1.0"
version = "0.1.1"
description = "CLI tool for batch converting between data formats (CSV, JSON, YAML, Parquet, Avro, Protobuf) with streaming for large files"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/datamorph/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""DataMorph CLI — Batch data format converter with streaming support."""
__version__ = "0.1.0"
__version__ = "0.1.1"
2 changes: 1 addition & 1 deletion tests/test_converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ class TestCLI:
def test_version(self, runner):
result = runner.invoke(cli, ["--version"])
assert result.exit_code == 0
assert "0.1.0" in result.output
assert "0.1.1" in result.output

def test_help(self, runner):
result = runner.invoke(cli, ["--help"])
Expand Down