From 8fa7ecfe364856ea800194671f4c1d60fb4a0152 Mon Sep 17 00:00:00 2001 From: Matthew Weidner <17693586+mweidner037@users.noreply.github.com> Date: Fri, 7 Mar 2025 20:25:33 -0600 Subject: [PATCH] changelog and versions --- CHANGELOG.md | 4 ++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7376927..15744fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 2.1.0 + +* Support Ecto 3.12. The changes _require_ Ecto 3.12, so its dependency is bumped. + ## 2.0.0 * Change underlying driver from [`mongodb`](https://github.com/elixir-mongo/mongodb) to [`mongodb_driver`](https://github.com/zookzook/elixir-mongodb-driver) 1.4.0 diff --git a/README.md b/README.md index 435b2d2..ae12e26 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Add `:mongodb_ecto` as a dependency in your `mix.exs` file. ```elixir def deps do [ - {:mongodb_ecto, "~> 1.0.0"} + {:mongodb_ecto, "~> 2.1.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 31b91f4..cf41cb9 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Mongo.Ecto.Mixfile do use Mix.Project @source_url "https://github.com/elixir-mongo/mongodb_ecto" - @version "2.0.0-rc.2" + @version "2.1.0" def project do [