From 0a62b02f445f1ee00613e6290e066fb1710ac045 Mon Sep 17 00:00:00 2001 From: Michael Maier Date: Sat, 18 Sep 2021 11:49:49 +0200 Subject: [PATCH] bumped to version 0.7.5 --- 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 ee236717..2bf67024 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.7.5 +* Enhancements + * replica set connection: faster topology update if the primary is down (thanks to p-mongo) + ## 0.7.4 * Enhancements * added a new option to specify a timeout, when increasing the connction pool is no option diff --git a/README.md b/README.md index d8b8dafb..41f8098b 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Add `mongodb_driver` to your mix.exs `deps`. ```elixir defp deps do - [{:mongodb_driver, "~> 0.7"}] + [{:mongodb_driver, "~> 0.7.5"}] end ``` diff --git a/mix.exs b/mix.exs index 36a46501..2a364aef 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Mongodb.Mixfile do use Mix.Project - @version "0.7.4" + @version "0.7.5" def project() do [app: :mongodb_driver,