Skip to content

Commit

Permalink
build: bumps version to v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
grzuy committed Sep 24, 2024
1 parent fd4f1ba commit 9a7614f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 9a7614f

Please sign in to comment.