From 31da09632047fa185501f963805fa0f4103c5713 Mon Sep 17 00:00:00 2001 From: Phil Chen <06fahchen@gmail.com> Date: Fri, 17 Apr 2026 18:50:57 +0900 Subject: [PATCH 1/2] chore: relax ecto_typed_schema version constraint Co-Authored-By: Claude Opus 4.6 (1M context) --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 653938a..0dc0732 100644 --- a/mix.exs +++ b/mix.exs @@ -45,7 +45,7 @@ defmodule Grephql.MixProject do {:req, "~> 0.5"}, {:jason, "~> 1.4", optional: true}, {:ecto, "~> 3.12"}, - {:ecto_typed_schema, "~> 0.1.0"}, + {:ecto_typed_schema, "~> 0.1"}, {:typed_structor, "~> 0.6"}, {:plug, "~> 1.0", only: :test}, {:mimic, "~> 2.3", only: :test}, From c54f3692c6258a9f26eabb97e5d97af3d31f3e5f Mon Sep 17 00:00:00 2001 From: Phil Chen <06fahchen@gmail.com> Date: Fri, 17 Apr 2026 18:52:04 +0900 Subject: [PATCH 2/2] chore: bump version to 0.10.1 Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 2 +- mix.exs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ac0da5..f894801 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Add `grephql` to your dependencies in `mix.exs`: ```elixir def deps do [ - {:grephql, "~> 0.10.0"} + {:grephql, "~> 0.10.1"} ] end ``` diff --git a/mix.exs b/mix.exs index 0dc0732..4a33abe 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Grephql.MixProject do use Mix.Project - @version "0.10.0" + @version "0.10.1" @source_url "https://github.com/fahchen/grephql" def project do