Skip to content

Commit

Permalink
chore: new version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ElhamAryanpur committed Jan 11, 2025
1 parent b84b193 commit 13b8947
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 11 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

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

## [0.6.1] - 2025-01-11

### Features

- Adding Vector3 for all the [f32; 3] ([b84b193](https://github.com/AryanpurTech/BlueEngine/commit/b84b1934c426fb63348aec368b4e53003945ad3a))
- Finalized vector.rs ([da69d1e](https://github.com/AryanpurTech/BlueEngine/commit/da69d1e2aee9abe251a084d3d22e8b7dc52f245a))
- Added Indexing & Neg to Vector3 & Vector2 ([c648c14](https://github.com/AryanpurTech/BlueEngine/commit/c648c14637fb10babe6bf89d7409b9e22dfcac22))
- Added Position3D for all of the position: [f32; 3] ([eff4e4e](https://github.com/AryanpurTech/BlueEngine/commit/eff4e4e6a31f7989034d34adb63972f924c7dfd6))

### Miscellaneous Tasks

- Remove Cargo.lock ([820c960](https://github.com/AryanpurTech/BlueEngine/commit/820c960b01ec74ed1329bd2e79bf811e4f930065))
- Changelog from the release workflow ([ec69cb0](https://github.com/AryanpurTech/BlueEngine/commit/ec69cb0f208a1c9307cd0f1ae82438c913197099))

### Refactor

- Replaced every [f32; 2] with Vector2 ([4dbf03c](https://github.com/AryanpurTech/BlueEngine/commit/4dbf03cb112605ced62afbc167fd4edcdbab6ab6))
- Position3D to Vector3 ([6081dc2](https://github.com/AryanpurTech/BlueEngine/commit/6081dc2783ddf96e5d91adc7201b7120c1f7045b))

## [0.6.0] - 2024-12-30

### Features
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blue_engine"
version = "0.6.0"
version = "0.6.1"
authors = ["Elham Aryanpur <[email protected]>"]
edition = "2021"
description = "General-Purpose, Easy-to-use, Fast, and Portable graphics engine"
Expand Down Expand Up @@ -35,11 +35,11 @@ u16 = ["blue_engine_core?/u16", "blue_engine_dynamic?/u16"]
u32 = ["blue_engine_core?/u32", "blue_engine_dynamic?/u32"]

[dependencies]
blue_engine_core = { path = "./crates/blue_engine_core", optional = true }
blue_engine_core = { version = "0.6.1", optional = true }

# Wasm does not support dynamic linking.
[target.'cfg(not(target_family = "wasm"))'.dependencies]
blue_engine_dynamic = { version = "0.6.0", optional = true }
blue_engine_dynamic = { version = "0.6.1", optional = true }

# ========== EXAMPLES ========== #

Expand Down
2 changes: 1 addition & 1 deletion crates/blue_engine_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blue_engine_core"
version = "0.6.0"
version = "0.6.1"
authors = ["Elham Aryanpur <[email protected]>"]
edition = "2021"
description = "USE blue_engine THIS IS FOR INTERNAL USE"
Expand Down
4 changes: 2 additions & 2 deletions crates/blue_engine_dynamic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blue_engine_dynamic"
version = "0.6.0"
version = "0.6.1"
authors = ["Elham Aryanpur <[email protected]>"]
edition = "2021"
description = "USE blue_engine THIS IS FOR INTERNAL USE"
Expand All @@ -22,4 +22,4 @@ u16 = ["blue_engine_core/u16"]
u32 = ["blue_engine_core/u32"]

[dependencies]
blue_engine_core = { version = "0.6.0" }
blue_engine_core = { version = "0.6.1" }

0 comments on commit 13b8947

Please sign in to comment.