From 5c501b8e90f2cebf364708a06989fe41f148d99e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Thu, 28 Sep 2023 16:33:04 +0700 Subject: [PATCH] Release v0.4.2 --- CHANGELOG.md | 10 ++++++++++ README.md | 4 ++-- mix.exs | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 217771a5..d425cb08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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.4.2](https://github.com/elixir-nx/bumblebee/tree/v0.4.2) (2023-09-28) + +### Added + +* More detailed error messages when loading fails ([#256](https://github.com/elixir-nx/bumblebee/pull/256)) + +### Changed + +* Automatic detection there are no model parameters in the `.bin` format, but `.safetensors` is available ([#256](https://github.com/elixir-nx/bumblebee/pull/256)) + ## [v0.4.1](https://github.com/elixir-nx/bumblebee/tree/v0.4.1) (2023-09-25) ### Changed diff --git a/README.md b/README.md index 3cdd67a0..51efd978 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ First add Bumblebee and EXLA as dependencies in your `mix.exs`. EXLA is an optio ```elixir def deps do [ - {:bumblebee, "~> 0.4.1"}, + {:bumblebee, "~> 0.4.2"}, {:exla, ">= 0.0.0"} ] end @@ -47,7 +47,7 @@ In notebooks and scripts, use the following `Mix.install/2` call to both install ```elixir Mix.install( [ - {:bumblebee, "~> 0.4.1"}, + {:bumblebee, "~> 0.4.2"}, {:exla, ">= 0.0.0"} ], config: [nx: [default_backend: EXLA.Backend]] diff --git a/mix.exs b/mix.exs index 93a0dde5..81181a9c 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Bumblebee.MixProject do use Mix.Project - @version "0.4.1" + @version "0.4.2" @description "Pre-trained and transformer Neural Network models in Axon" def project do