From e867a7ca3e1807f95d2f1ad31e40da9f5210ddff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Wed, 14 Dec 2022 22:57:21 +0100 Subject: [PATCH] Release v0.1.1 (#114) --- CHANGELOG.md | 15 +++++++++++++++ README.md | 4 ++-- examples/phoenix/image_classification.exs | 2 +- examples/phoenix/text_classification.exs | 2 +- mix.exs | 2 +- notebooks/examples.livemd | 2 +- notebooks/stable_diffusion.livemd | 2 +- 7 files changed, 22 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78f9dcf9..9cd62163 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ 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.1](https://github.com/elixir-nx/bumblebee/tree/v0.1.1) (2022-12-14) + +### Added + +* Support for a negative prompt in Stable Diffusion input ([#109](https://github.com/elixir-nx/bumblebee/pull/109)) + +### Changed + +* Improved fill-mask output token to not include whitespace or whitespace placeholder ([#106](https://github.com/elixir-nx/bumblebee/pull/106)) + +### Fixed + +* Image rendering in the Stable Diffusion notebook ([#95](https://github.com/elixir-nx/bumblebee/pull/95)) +* Download error when the tmp and cache directories are on different file systems ([#98](https://github.com/elixir-nx/bumblebee/pull/98)) + ## [v0.1.0](https://github.com/elixir-nx/bumblebee/tree/v0.1.0) (2022-12-07) Initial release. diff --git a/README.md b/README.md index 90956c5f..7f29e37a 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ First add Bumblebee and EXLA as dependencies. EXLA is an optional dependency but ```elixir def deps do [ - {:bumblebee, "~> 0.1.0"}, + {:bumblebee, "~> 0.1.1"}, {:exla, ">= 0.0.0"} ] end @@ -33,7 +33,7 @@ In notebooks and scripts, use the following `Mix.install/2` call to both install ```elixir Mix.install( [ - {:bumblebee, "~> 0.1.0"}, + {:bumblebee, "~> 0.1.1"}, {:exla, ">= 0.0.0"} ], config: [nx: [default_backend: EXLA.Backend]] diff --git a/examples/phoenix/image_classification.exs b/examples/phoenix/image_classification.exs index e85f1dc6..2f13b45b 100644 --- a/examples/phoenix/image_classification.exs +++ b/examples/phoenix/image_classification.exs @@ -12,7 +12,7 @@ Mix.install([ {:phoenix, "~> 1.7.0-rc.0", override: true}, {:phoenix_live_view, "~> 0.18.3"}, # Bumblebee and friends - {:bumblebee, "~> 0.1.0"}, + {:bumblebee, "~> 0.1.1"}, {:nx, "~> 0.4.1"}, {:exla, "~> 0.4.1"} ]) diff --git a/examples/phoenix/text_classification.exs b/examples/phoenix/text_classification.exs index 8bf8952a..ffcca079 100644 --- a/examples/phoenix/text_classification.exs +++ b/examples/phoenix/text_classification.exs @@ -11,7 +11,7 @@ Mix.install([ {:phoenix, "~> 1.7.0-rc.0", override: true}, {:phoenix_live_view, "~> 0.18.3"}, # Bumblebee and friends - {:bumblebee, "~> 0.1.0"}, + {:bumblebee, "~> 0.1.1"}, {:nx, "~> 0.4.1"}, {:exla, "~> 0.4.1"} ]) diff --git a/mix.exs b/mix.exs index 1b7a6672..c203640e 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Bumblebee.MixProject do use Mix.Project - @version "0.1.0" + @version "0.1.1" @description "Pre-trained and transformer Neural Network models in Axon" def project do diff --git a/notebooks/examples.livemd b/notebooks/examples.livemd index d0fdeb21..70b21144 100644 --- a/notebooks/examples.livemd +++ b/notebooks/examples.livemd @@ -2,7 +2,7 @@ ```elixir Mix.install([ - {:bumblebee, "~> 0.1.0"}, + {:bumblebee, "~> 0.1.1"}, {:nx, "~> 0.4.1"}, {:exla, "~> 0.4.1"}, {:axon, "~> 0.3.1"}, diff --git a/notebooks/stable_diffusion.livemd b/notebooks/stable_diffusion.livemd index 8b432a99..afb3e978 100644 --- a/notebooks/stable_diffusion.livemd +++ b/notebooks/stable_diffusion.livemd @@ -2,7 +2,7 @@ ```elixir Mix.install([ - {:bumblebee, github: "elixir-nx/bumblebee"}, + {:bumblebee, "~> 0.1.1"}, {:nx, "~> 0.4.1"}, {:exla, "~> 0.4.1"}, {:kino, "~> 0.8.0"}