Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,16 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Free Disk Space (Ubuntu) for OneAPI
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Ubuntu build dependencies
run: sudo apt update && sudo apt install -y clang cmake
- name: Install oneAPI Toolkit
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to this project will be documented in this file.

## [0.1.14] - 2025-12-28

### 🚀 Features

- Custom sigmas for the sampler ([#61](https://github.com/newfla/diffusion-rs/pull/61))
- Re-enable windows build ([#63](https://github.com/newfla/diffusion-rs/pull/63))
- Caching methods ([#64](https://github.com/newfla/diffusion-rs/pull/64))
- Added a cli as example ([#65](https://github.com/newfla/diffusion-rs/pull/65))

<!-- generated by git-cliff -->

## [0.1.13] - 2025-12-12

### 🚀 Features
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["sys"]

[workspace.package]
version = "0.1.13"
version = "0.1.14"
edition = "2024"
license = "MIT"
repository = "https://github.com/newfla/diffusion-rs"
Expand All @@ -21,7 +21,7 @@ documentation = "https://docs.rs/diffusion-rs"

[dependencies]
derive_builder = "0.20.2"
diffusion-rs-sys = { path = "sys", version = "0.1.13" }
diffusion-rs-sys = { path = "sys", version = "0.1.14" }
hf-hub = {version = "0.4.2", default-features = false, features = ["ureq"]}
image = "0.25.5"
libc = "0.2.161"
Expand Down
10 changes: 10 additions & 0 deletions sys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file.

## [0.1.14] - 2025-12-28

### 🚀 Features

- Custom sigmas for the sampler ([#61](https://github.com/newfla/diffusion-rs/pull/61))
- Re-enable windows build ([#63](https://github.com/newfla/diffusion-rs/pull/63))
- Caching methods ([#64](https://github.com/newfla/diffusion-rs/pull/64))

<!-- generated by git-cliff -->

## [0.1.13] - 2025-12-12

### 🚀 Features
Expand Down