diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e6d10e..18e2ec0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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). +## [v0.1.2](https://github.com/elixir-nx/safetensors/tree/v0.1.2) (2023-09-27) + +### Added + +- Added `Safetensors.read!/1` for more efficient loading from file ([#4](https://github.com/elixir-nx/safetensors/pull/4)) + ## [v0.1.1](https://github.com/elixir-nx/safetensors/tree/v0.1.1) (2023-08-04) ### Added diff --git a/README.md b/README.md index 7c95cdf..1f2e853 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ You can add the `:safetensors` dependency to your `mix.exs`: ```elixir def deps do [ - {:safetensors, "~> 0.1.1"} + {:safetensors, "~> 0.1.2"} ] end ``` diff --git a/mix.exs b/mix.exs index bcbe101..c7d5162 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Safetensors.MixProject do use Mix.Project - @version "0.1.1" + @version "0.1.2" @description "Safetensors implementation for Nx" def project do