diff --git a/CHANGELOG.md b/CHANGELOG.md index 722d7f4..fe01492 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v2.0.1 2024-09-04 + +- Bug Fix: Revert undesirable lateral ([#171](https://github.com/absinthe-graphql/dataloader/pull/171)) +- Improvement: Relax otel process propagator vsn ([#167](https://github.com/absinthe-graphql/dataloader/pull/167) + ## v2.0.0 2023-07-24 - Breaking Feature: Automatically handle sync vs async for the ecto dataloader source ([#146](https://github.com/absinthe-graphql/dataloader/pull/146)). Other dataloader source implementations need to add an `async?` function to comply with the protocol. NOTE: This only impacts you if you have a custom dataloader source. If you use the built in Ecto or KV sources then there is nothing you need to do. diff --git a/README.md b/README.md index f30ce4d..932f5de 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The package can be installed by adding [`:dataloader`](https://hex.pm/packages/d ```elixir def deps do [ - {:dataloader, "~> 1.0.0"} + {:dataloader, "~> 2.0.0"} ] end ``` diff --git a/mix.exs b/mix.exs index a00f49e..84f34da 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Dataloader.Mixfile do use Mix.Project @source_url "https://github.com/absinthe-graphql/dataloader" - @version "2.0.0" + @version "2.0.1" def project do [