Skip to content

Commit

Permalink
Release v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatanklosko committed Dec 15, 2022
1 parent 52632b1 commit e281a15
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
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.1"},
{:bumblebee, "~> 0.1.2"},
{: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.1"},
{:bumblebee, "~> 0.1.2"},
{: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.1"},
{:bumblebee, "~> 0.1.2"},
{: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.1"},
{:bumblebee, "~> 0.1.2"},
{: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.1"
@version "0.1.2"
@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.1"},
{:bumblebee, "~> 0.1.2"},
{: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, "~> 0.1.1"},
{:bumblebee, "~> 0.1.2"},
{:nx, "~> 0.4.1"},
{:exla, "~> 0.4.1"},
{:kino, "~> 0.8.0"}
Expand Down

0 comments on commit e281a15

Please sign in to comment.