diff --git a/CHANGELOG.md b/CHANGELOG.md index f5fd67e..c193e72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v0.4.1] - 2024-09-24 + +### Added + +- `mix blend.install` as a rename for `mix blend.init` (soft-deprecated, still works). +- `mix blend.gen.premix` as a rename for `mix blend.premix` (soft-deprecated, still works). + ## [v0.4.0] - 2024-08-09 ### Added @@ -57,6 +64,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `mix blend.init` - `mix blend.get` +[v0.4.1]: https://github.com/mimiquate/blend/compare/v0.4.0...v0.4.1/ [v0.4.0]: https://github.com/mimiquate/blend/compare/v0.3.0...v0.4.0/ [v0.3.0]: https://github.com/mimiquate/blend/compare/v0.2.0...v0.3.0/ [v0.2.0]: https://github.com/mimiquate/blend/compare/v0.1.3...v0.2.0/ diff --git a/README.md b/README.md index a8835d6..ea4c2e0 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ by adding `blend` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:blend, "~> 0.4.0", only: :dev} + {:blend, "~> 0.4.1", only: :dev} ] end ``` diff --git a/mix.exs b/mix.exs index 0b3f676..3716afc 100644 --- a/mix.exs +++ b/mix.exs @@ -3,12 +3,13 @@ defmodule Blend.MixProject do @description "Test your package against different versions of its dependencies" @source_url "https://github.com/mimiquate/blend" + @version "0.4.1" def project do [ app: :blend, description: @description, - version: "0.4.0", + version: @version, elixir: "~> 1.13", start_permanent: Mix.env() == :prod, deps: deps(),