Skip to content

Commit d90dc08

Browse files
committed
Relax Nx config requirements
1 parent 7b0042b commit d90dc08

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## Image 0.66.0
4+
5+
This is the changelog for Image version 0.66.0 released on April 25th, 2026. For older changelogs please consult the release tag on [GitHub](https://github.com/elixir-image/image/tags)
6+
7+
### Enhancements
8+
9+
* Relax Nx support to allow `~> 0.10` (not ~> 0.11). This allows Bumblebee to be configured in `image_vision` since Bumblebee only supports Nx `~> 0.9.0 or ~> 0.10.0`.
10+
311
## Image 0.65.0
412

513
This is the changelog for Image version 0.65.0 released on April 9th, 2026. For older changelogs please consult the release tag on [GitHub](https://github.com/elixir-image/image/tags)

mix.exs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Image.MixProject do
22
use Mix.Project
33

4-
@version "0.65.0"
4+
@version "0.66.0"
55
@app_name "image"
66

77
def project do
@@ -89,10 +89,10 @@ defmodule Image.MixProject do
8989

9090
# For Nx interchange (Image.to_nx/2, Image.from_nx/1)
9191
# and Scholar for k-means clustering. Image classification
92-
# and image generation moved to the `:image_detection`
92+
# and image generation moved to the `:image_vision`
9393
# package along with the `:bumblebee` dependency.
94-
{:nx, "~> 0.11.0", optional: true},
95-
{:exla, "0.11.0", optional: true},
94+
{:nx, "~> 0.10", optional: true},
95+
{:exla, "~> 0.10", optional: true},
9696
{:nx_image, "~> 0.1", optional: true},
9797
{:scholar, "~> 0.3", optional: true},
9898
{:rustler, "> 0.0.0", optional: true},

0 commit comments

Comments
 (0)