Skip to content

Commit b6525b2

Browse files
committed
Release v0.5.3
1 parent 05401ed commit b6525b2

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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.5.3](https://github.com/elixir-nx/bumblebee/tree/v0.5.3) (2024-02-26)
9+
10+
### Fixed
11+
12+
* Loading generation config with nil attributes
13+
* Generating with `:no_repeat_ngram_length` when using lower precision
14+
815
## [v0.5.2](https://github.com/elixir-nx/bumblebee/tree/v0.5.2) (2024-02-24)
916

1017
### Fixed

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.5.2"},
29+
{:bumblebee, "~> 0.5.3"},
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.5.2"},
50+
{:bumblebee, "~> 0.5.3"},
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.5.2"
4+
@version "0.5.3"
55
@description "Pre-trained and transformer Neural Network models in Axon"
66

77
def project do

0 commit comments

Comments
 (0)