Skip to content

Commit 5c501b8

Browse files
committed
Release v0.4.2
1 parent f1b7030 commit 5c501b8

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [v0.4.2](https://github.com/elixir-nx/bumblebee/tree/v0.4.2) (2023-09-28)
9+
10+
### Added
11+
12+
* More detailed error messages when loading fails ([#256](https://github.com/elixir-nx/bumblebee/pull/256))
13+
14+
### Changed
15+
16+
* Automatic detection there are no model parameters in the `.bin` format, but `.safetensors` is available ([#256](https://github.com/elixir-nx/bumblebee/pull/256))
17+
818
## [v0.4.1](https://github.com/elixir-nx/bumblebee/tree/v0.4.1) (2023-09-25)
919

1020
### Changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ First add Bumblebee and EXLA as dependencies in your `mix.exs`. EXLA is an optio
2626
```elixir
2727
def deps do
2828
[
29-
{:bumblebee, "~> 0.4.1"},
29+
{:bumblebee, "~> 0.4.2"},
3030
{:exla, ">= 0.0.0"}
3131
]
3232
end
@@ -47,7 +47,7 @@ In notebooks and scripts, use the following `Mix.install/2` call to both install
4747
```elixir
4848
Mix.install(
4949
[
50-
{:bumblebee, "~> 0.4.1"},
50+
{:bumblebee, "~> 0.4.2"},
5151
{:exla, ">= 0.0.0"}
5252
],
5353
config: [nx: [default_backend: EXLA.Backend]]

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Bumblebee.MixProject do
22
use Mix.Project
33

4-
@version "0.4.1"
4+
@version "0.4.2"
55
@description "Pre-trained and transformer Neural Network models in Axon"
66

77
def project do

0 commit comments

Comments
 (0)