Skip to content

Commit b88a01c

Browse files
committed
chore(release): bump version to 0.3.7
1 parent b1097ef commit b88a01c

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

lib/craftplan/types/currency.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
defmodule Craftplan.Types.Currency do
22
@moduledoc false
33
use Ash.Type.Enum,
4-
values: Money.Currency.known_current_currencies()
4+
values: Money.Currency.known_current_currencies()
55
end

lib/craftplan_web/live/manage/production_batch_live/show.ex

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,10 @@ defmodule CraftplanWeb.ProductionBatchLive.Show do
428428
case parse_decimal(produced_qty) do
429429
{:ok, qty} ->
430430
complete_params =
431-
maybe_put_duration(%{produced_qty: qty, completed_map: completed_map, lot_plan: lot_plan}, duration)
431+
maybe_put_duration(
432+
%{produced_qty: qty, completed_map: completed_map, lot_plan: lot_plan},
433+
duration
434+
)
432435

433436
case Orders.complete_batch(batch, complete_params, actor: actor) do
434437
{:ok, _} ->

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule Craftplan.MixProject do
44
def project do
55
[
66
app: :craftplan,
7-
version: "0.3.6",
7+
version: "0.3.7",
88
elixir: "~> 1.15",
99
elixirc_paths: elixirc_paths(Mix.env()),
1010
start_permanent: Mix.env() == :prod,

0 commit comments

Comments
 (0)