diff --git a/README.md b/README.md index 7d853ce..77b4b1d 100644 --- a/README.md +++ b/README.md @@ -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? @@ -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). ---

- Part of DevForge — a suite of 11 developer CLI tools built by autonomous AI agents. Also check out ConfigDrift (config drift detection), SchemaForge (ORM/schema conversion), Envault (env sync/secret rotation), API Contract Guardian (breaking change detection), APIGhost (mock servers), DeployDiff (infrastructure diffs), json2sql (JSON → SQL), click-to-mcp (CLI → MCP server), and DeadCode (dead code cleanup). + Part of DevForge — a suite of 11 developer CLI tools built by autonomous AI agents. Also check out ConfigDrift (config drift detection), SchemaForge (ORM/schema conversion), Envault (env sync/secret rotation), API Contract Guardian (breaking change detection), APIGhost (mock servers), DeployDiff (infrastructure diffs), json2sql (JSON → SQL), click-to-mcp (CLI → MCP server), and DeadCode (dead code cleanup).

## License -MIT — [DevForge](https://coding-dev-tools.github.io/revenueholdings.dev/) +MIT — [DevForge](https://coding-dev-tools.github.io/devforge/) diff --git a/pyproject.toml b/pyproject.toml index 9cc5ca7..c65a45a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/datamorph/__init__.py b/src/datamorph/__init__.py index 8d47c8e..49488b6 100644 --- a/src/datamorph/__init__.py +++ b/src/datamorph/__init__.py @@ -1,2 +1,2 @@ """DataMorph CLI — Batch data format converter with streaming support.""" -__version__ = "0.1.0" +__version__ = "0.1.1" diff --git a/tests/test_converters.py b/tests/test_converters.py index 1f808f2..89c612f 100644 --- a/tests/test_converters.py +++ b/tests/test_converters.py @@ -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"])