From e281a15d2aa4a47bfe8d17d7519a6001dc472c98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Thu, 15 Dec 2022 01:10:21 +0100 Subject: [PATCH] Release v0.1.2 --- CHANGELOG.md | 6 ++++++ 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, 13 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cd62163..ed335ae9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.2](https://github.com/elixir-nx/bumblebee/tree/v0.1.2) (2022-12-15) + +### Fixed + +* Stable Diffusion to accept a string as the input ([#115](https://github.com/elixir-nx/bumblebee/pull/115)) + ## [v0.1.1](https://github.com/elixir-nx/bumblebee/tree/v0.1.1) (2022-12-14) ### Added diff --git a/README.md b/README.md index 7f29e37a..8bbbe779 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.1"}, + {:bumblebee, "~> 0.1.2"}, {: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.1"}, + {:bumblebee, "~> 0.1.2"}, {: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 2f13b45b..10d5cb58 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.1"}, + {:bumblebee, "~> 0.1.2"}, {:nx, "~> 0.4.1"}, {:exla, "~> 0.4.1"} ]) diff --git a/examples/phoenix/text_classification.exs b/examples/phoenix/text_classification.exs index ffcca079..e5815f82 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.1"}, + {:bumblebee, "~> 0.1.2"}, {:nx, "~> 0.4.1"}, {:exla, "~> 0.4.1"} ]) diff --git a/mix.exs b/mix.exs index c203640e..e3cd57aa 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Bumblebee.MixProject do use Mix.Project - @version "0.1.1" + @version "0.1.2" @description "Pre-trained and transformer Neural Network models in Axon" def project do diff --git a/notebooks/examples.livemd b/notebooks/examples.livemd index 70b21144..41a097fd 100644 --- a/notebooks/examples.livemd +++ b/notebooks/examples.livemd @@ -2,7 +2,7 @@ ```elixir Mix.install([ - {:bumblebee, "~> 0.1.1"}, + {:bumblebee, "~> 0.1.2"}, {: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 afb3e978..e1d0a863 100644 --- a/notebooks/stable_diffusion.livemd +++ b/notebooks/stable_diffusion.livemd @@ -2,7 +2,7 @@ ```elixir Mix.install([ - {:bumblebee, "~> 0.1.1"}, + {:bumblebee, "~> 0.1.2"}, {:nx, "~> 0.4.1"}, {:exla, "~> 0.4.1"}, {:kino, "~> 0.8.0"}