From c582a5eb69720a185fc521f964104ab3d47aeaa4 Mon Sep 17 00:00:00 2001 From: DevForge Engineer Date: Mon, 18 May 2026 08:20:13 -0400 Subject: [PATCH] =?UTF-8?q?fix(docs):=20correct=20DevForge=20URLs=20(reven?= =?UTF-8?q?ueholdings.dev=E2=86=92devforge),=20bump=20version=20to=200.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix 4 broken DevForge site URLs: all evenueholdings.dev → devforge (revenueholdings.dev returns 404; devforge is the live GitHub Pages site) - Bump pyproject.toml and __init__.py version from 0.1.0 to 0.1.1 to match CHANGELOG (0.1.1 was released but version files weren't updated) - Update version assertion in test to match 0.1.1 --- README.md | 8 ++++---- pyproject.toml | 2 +- src/datamorph/__init__.py | 2 +- tests/test_converters.py | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) 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"])