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
13 changes: 0 additions & 13 deletions .github/FUNDING.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build

on:
push:
branches: [master]
branches: [ master ]

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -31,4 +31,4 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --release --verbose
run: cargo build --release --verbose
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release

on:
release:
types: [created]


jobs:
publish:
runs-on: ubuntu-latest
name: Publish Blue Engine to crates.io

steps:
- uses: actions/checkout@v4
- name: publish
run: |
cd crates/blue_engine_core && cargo publish --allow-dirty
cd crates/blue_engine_dynamic && cargo publish --allow-dirty
cargo publish --allow-dirty
cd crates/blue_engine_utilities && cargo publish --allow-dirty
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. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.

## [0.10.0](https://github.com/AryanpurTech/BlueEngine/compare/v0.9.4..0.10.0) - 2025-12-07

### Features

- updated egui to the latest version - ([6b070cb](https://github.com/AryanpurTech/BlueEngine/commit/6b070cba689dd0759f9d506e2c7630bbe5b223ad))
- updated utilities to latest version - ([b004018](https://github.com/AryanpurTech/BlueEngine/commit/b004018c90b81a45455e62028c62ba9b8fe75400))

### Refactoring

- removed flume as a dependency of headless - ([1f90fb9](https://github.com/AryanpurTech/BlueEngine/commit/1f90fb93b6650c98c5bae3631b0975c13e7d3909))

## [0.9.4](https://github.com/AryanpurTech/BlueEngine/compare/v0.9.3..0.9.4) - 2025-08-06

### Bug Fixes
Expand Down
Loading