Skip to content
Open
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
42 changes: 42 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: changelog

on:
push:
branches: ["master"]
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
changelog:
name: Generate changelog
runs-on: ubuntu-24.04
outputs:
release_body: ${{ steps.git-cliff.outputs.content }}

steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
ref: master

- name: Generate changelog
uses: orhun/git-cliff-action@v4
with:
config: cliff.toml
args: --verbose v0.14.36..HEAD
env:
OUTPUT: CHANGELOG.md

- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
commit-message: 'chore: update CHANGELOG.md'
author: changelog-updater <[email protected]>
signoff: false
branch: update-changelog
delete-branch: true
title: 'chore: update CHANGELOG.md'
10 changes: 0 additions & 10 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@ jobs:
toolchain: stable
components: clippy

- name: Cache cargo output
uses: Swatinem/rust-cache@v2
with:
key: stable-${{ matrix.feature }}

- name: Fetch dependencies
run: cargo +stable fetch --locked

Expand Down Expand Up @@ -88,11 +83,6 @@ jobs:
with:
toolchain: stable

- name: Cache cargo output
uses: Swatinem/rust-cache@v2
with:
key: stable-${{ matrix.os }}-${{ matrix.feature }}

- name: Fetch dependencies
run: cargo +stable fetch --locked

Expand Down
80 changes: 80 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# Changelog

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).

## [0.16.0] - 2025-10-17

### <!-- 0 -->Added
- Add draw_debug_text() ([#233](https://github.com/vhspace/sdl3-rs/pull/233))

### <!-- 1 -->Changed
- Update deps
- Remove rust cache ([#245](https://github.com/vhspace/sdl3-rs/pull/245))
- Automate changelog generation ([#231](https://github.com/vhspace/sdl3-rs/pull/231))

### <!-- 2 -->Fixed
- Change acquire_swapchain_texture to return an Option<Texture> ([#240](https://github.com/vhspace/sdl3-rs/pull/240))

## [0.15.1] - 2025-09-14

### <!-- 0 -->Added
- Add basic TTF_TextEngine wrapper ([#221](https://github.com/vhspace/sdl3-rs/pull/221))
- Add set_scale_mode and scale_mode to unsafe Texture ([#224](https://github.com/vhspace/sdl3-rs/pull/224))

### <!-- 1 -->Changed
- Bump minor version, sort of breaking changes
- Update log enums ([#222](https://github.com/vhspace/sdl3-rs/pull/222))
- Add lint pr title workflow ([#229](https://github.com/vhspace/sdl3-rs/pull/229))
- Remove build cache ([#228](https://github.com/vhspace/sdl3-rs/pull/228))

### <!-- 2 -->Fixed
- Expose viewport wrapper publicly ([#227](https://github.com/vhspace/sdl3-rs/pull/227))

### <!-- 3 -->Removed
- Remove PixelFormatEnum ([#223](https://github.com/vhspace/sdl3-rs/pull/223))

### <!-- 4 -->Dependencies
- Bump actions/checkout from 4 to 5 ([#211](https://github.com/vhspace/sdl3-rs/pull/211))
- Bump bitflags from 2.9.1 to 2.9.4 ([#225](https://github.com/vhspace/sdl3-rs/pull/225))
- Bump amannn/action-semantic-pull-request from 5 to 6 ([#230](https://github.com/vhspace/sdl3-rs/pull/230))

## [0.14.42] - 2025-09-04

### <!-- 4 -->Dependencies
- Bump sdl3-sys from 0.5.0+SDL3-3.2.12 to 0.5.5+SDL3-3.2.22 ([#226](https://github.com/vhspace/sdl3-rs/pull/226))

## [0.14.41] - 2025-08-24

### <!-- 0 -->Added
- Add Viewport wrapper and RenderPass::set_scissor ([#220](https://github.com/vhspace/sdl3-rs/pull/220))
- Add fence and blit operations ([#218](https://github.com/vhspace/sdl3-rs/pull/218))

## [0.14.40] - 2025-08-18

### <!-- 0 -->Added
- Added IOStream::from_vec.

### <!-- 1 -->Changed
- Rework checks workflows ([#203](https://github.com/vhspace/sdl3-rs/pull/203))
- Replace unsound gpu enums with wrapper structs ([#200](https://github.com/vhspace/sdl3-rs/pull/200))
- Fix GPU compute pass binding count and expose storage bindings ([#199](https://github.com/vhspace/sdl3-rs/pull/199))

### <!-- 2 -->Fixed
- Use new enum format ([#202](https://github.com/vhspace/sdl3-rs/pull/202))
- Allow to bind samplers for compute pass ([#201](https://github.com/vhspace/sdl3-rs/pull/201))

### <!-- 4 -->Dependencies
- Bump libc from 0.2.172 to 0.2.174 ([#210](https://github.com/vhspace/sdl3-rs/pull/210))
- Bump bitflags from 2.9.0 to 2.9.1 ([#207](https://github.com/vhspace/sdl3-rs/pull/207))
- Bump actions/cache from 3 to 4 ([#208](https://github.com/vhspace/sdl3-rs/pull/208))

[0.16.0]: https://github.com/vhspace/sdl3-rs/compare/v0.15.1...v0.16.0
[0.15.1]: https://github.com/vhspace/sdl3-rs/compare/v0.14.42...v0.15.1
[0.14.42]: https://github.com/vhspace/sdl3-rs/compare/v0.14.41...v0.14.42
[0.14.41]: https://github.com/vhspace/sdl3-rs/compare/v0.14.40...v0.14.41
[0.14.40]: https://github.com/vhspace/sdl3-rs/compare/v0.14.36...v0.14.40

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