Skip to content

Commit

Permalink
Release v0.1.1 (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatanklosko authored Dec 14, 2022
1 parent bd1dabd commit e867a7c
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 7 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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]]
Expand Down
2 changes: 1 addition & 1 deletion examples/phoenix/image_classification.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
])
Expand Down
2 changes: 1 addition & 1 deletion examples/phoenix/text_classification.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
])
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion notebooks/examples.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down
2 changes: 1 addition & 1 deletion notebooks/stable_diffusion.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down

0 comments on commit e867a7c

Please sign in to comment.