From b6525b268c3b32b101d2070091127fa6fa78a3d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Mon, 26 Feb 2024 14:35:34 +0700 Subject: [PATCH] Release v0.5.3 --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- mix.exs | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7fffa97..8346f352 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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.5.3](https://github.com/elixir-nx/bumblebee/tree/v0.5.3) (2024-02-26) + +### Fixed + +* Loading generation config with nil attributes +* Generating with `:no_repeat_ngram_length` when using lower precision + ## [v0.5.2](https://github.com/elixir-nx/bumblebee/tree/v0.5.2) (2024-02-24) ### Fixed diff --git a/README.md b/README.md index 4a8939c4..50209af3 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.5.2"}, + {:bumblebee, "~> 0.5.3"}, {: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.5.2"}, + {:bumblebee, "~> 0.5.3"}, {:exla, ">= 0.0.0"} ], config: [nx: [default_backend: EXLA.Backend]] diff --git a/mix.exs b/mix.exs index faa86611..61c98589 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Bumblebee.MixProject do use Mix.Project - @version "0.5.2" + @version "0.5.3" @description "Pre-trained and transformer Neural Network models in Axon" def project do