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
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
image: ghcr.io/jggr/f-value-builder:latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
target
Expand All @@ -39,7 +39,7 @@ jobs:
run: cargo build

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: f_value-debug-linux
path: target/debug/f_value
Expand All @@ -53,10 +53,10 @@ jobs:
needs: build-debug

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
target
Expand All @@ -70,7 +70,7 @@ jobs:
run: cargo build --release

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: f_value-release-linux
path: target/release/f_value
Expand All @@ -84,10 +84,10 @@ jobs:
needs: build-debug

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
target
Expand All @@ -101,7 +101,7 @@ jobs:
run: cargo build --target x86_64-pc-windows-gnu

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: f_value-debug-windows
path: target/x86_64-pc-windows-gnu/debug/f_value.exe
Expand All @@ -115,10 +115,10 @@ jobs:
needs: crossbuild-debug

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
target
Expand All @@ -132,7 +132,7 @@ jobs:
run: cargo build --target x86_64-pc-windows-gnu --release

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: f_value-release-windows
path: target/x86_64-pc-windows-gnu/release/f_value.exe
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [0.1.6] - 2026-06-14

### Changed

- Drop `app::controller::{write_temp_style_file, load_style_from_memory}`
- Use `raylib::prelude::RaylibGuiState::gui_load_style_from_memory`
- Bump `raylib` to `6.0.0`
- Bump `pdf-writer` to `0.15.0`
- Bump `chrono` to `0.4.45`
- Drop `uuid` dep

## [0.1.5] - 2026-05-15

### Added
Expand Down
Loading