Packages

Model versioning, artifact storage, and lineage tracking for ML pipelines

Current section

4 Versions

Jump to

Compare versions

3 files changed
+10 additions
-4 deletions
  @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7 7
8 + ## [0.3.1] - 2025-12-28
9 +
10 + ### Changed
11 +
12 + - Updated crucible_framework dependency to ~> 0.5.2
13 +
8 14 ## [0.3.0] - 2025-12-28
9 15
10 16 ### Changed
  @@ -4,7 +4,7 @@
4 4 {<<"Online documentation">>,
5 5 <<"https://hexdocs.pm/crucible_model_registry">>}]}.
6 6 {<<"name">>,<<"crucible_model_registry">>}.
7 - {<<"version">>,<<"0.3.0">>}.
7 + {<<"version">>,<<"0.3.1">>}.
8 8 {<<"description">>,
9 9 <<"Model versioning, artifact storage, and lineage tracking for ML pipelines">>}.
10 10 {<<"elixir">>,<<"~> 1.14">>}.
  @@ -93,7 +93,7 @@
93 93 [{<<"name">>,<<"crucible_framework">>},
94 94 {<<"app">>,<<"crucible_framework">>},
95 95 {<<"optional">>,false},
96 - {<<"requirement">>,<<"~> 0.5.1">>},
96 + {<<"requirement">>,<<"~> 0.5.2">>},
97 97 {<<"repository">>,<<"hexpm">>}],
98 98 [{<<"name">>,<<"crucible_ir">>},
99 99 {<<"app">>,<<"crucible_ir">>},
  @@ -1,7 +1,7 @@
1 1 defmodule CrucibleModelRegistry.MixProject do
2 2 use Mix.Project
3 3
4 - @version "0.3.0"
4 + @version "0.3.1"
5 5 @source_url "https://github.com/North-Shore-AI/crucible_model_registry"
6 6
7 7 def project do
  @@ -43,7 +43,7 @@ defmodule CrucibleModelRegistry.MixProject do
43 43 {:ex_aws_s3, "~> 2.5"},
44 44 {:hackney, "~> 1.20"},
45 45 {:sweet_xml, "~> 0.7"},
46 - {:crucible_framework, "~> 0.5.1"},
46 + {:crucible_framework, "~> 0.5.2"},
47 47 {:crucible_ir, "~> 0.2.1"},
48 48 {:mox, "~> 1.1", only: :test},
49 49 {:ex_machina, "~> 2.7", only: :test},