diff --git a/CHANGELOG.md b/CHANGELOG.md index 3eb248b..81eef46 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.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.5.2] - 2025-12-21 + +### Added + +- `halt/2` optionally accepts a `success: true` flag, allowing the command to halt early + successfully. ([#16](https://github.com/codedge-llc/commandex/pull/16)) + ## [0.5.1] - 2024-09-09 ### Fixed diff --git a/README.md b/README.md index d856b73..0d8020a 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Add commandex as a `mix.exs` dependency: ```elixir def deps do [ - {:commandex, "~> 0.5.1"} + {:commandex, "~> 0.5.2"} ] end ``` diff --git a/mix.exs b/mix.exs index 6f6d0e0..301908e 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Commandex.MixProject do use Mix.Project @source_url "https://github.com/codedge-llc/commandex" - @version "0.5.1" + @version "0.5.2" def project do [