File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 0.5.2] - 2025-12-21
9+
10+ ### Added
11+
12+ - ` halt/2 ` optionally accepts a ` success: true ` flag, allowing the command to halt early
13+ successfully. ([ #16 ] ( https://github.com/codedge-llc/commandex/pull/16 ) )
14+
815## [ 0.5.1] - 2024-09-09
916
1017### Fixed
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Add commandex as a `mix.exs` dependency:
1919``` elixir
2020def deps do
2121 [
22- {:commandex , " ~> 0.5.1 " }
22+ {:commandex , " ~> 0.5.2 " }
2323 ]
2424end
2525```
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ defmodule Commandex.MixProject do
22 use Mix.Project
33
44 @ source_url "https://github.com/codedge-llc/commandex"
5- @ version "0.5.1 "
5+ @ version "0.5.2 "
66
77 def project do
88 [
You can’t perform that action at this time.
0 commit comments