diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b6b95c..6e1cf9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.1.0] - 2019-02-27 + +### Added + +- `Ecto.SoftDelete.Repo` for adding soft delete functions to repositories. + ## [1.0.0] - 2019-02-15 ### Added diff --git a/mix.exs b/mix.exs index 3abf5b3..9bcb74e 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule EctoSoftDelete.Mixfile do def project do [ app: :ecto_soft_delete, - version: "1.0.0", + version: "1.1.0", elixir: "~> 1.8", elixirc_paths: elixirc_paths(Mix.env()), build_embedded: Mix.env() == :prod,