Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
parker02311 committed Feb 25, 2025
1 parent e0a5960 commit ecc4519
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.0-beta.6] - 2025-02-24

### Fixed

- Export button dissapearing when returning to menu and editing previously opened vehicle
Expand Down Expand Up @@ -67,7 +69,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial public beta release.

[unreleased]: https://github.com/Redon-Tech/Emergency-Vehicle-Creator/compare/3.0.0-beta.5...main
[unreleased]: https://github.com/Redon-Tech/Emergency-Vehicle-Creator/compare/3.0.0-beta.6...main
[3.0.0-beta.6]: https://github.com/Redon-Tech/Emergency-Vehicle-Creator/releases/tag/3.0.0-beta.6
[3.0.0-beta.5]: https://github.com/Redon-Tech/Emergency-Vehicle-Creator/releases/tag/3.0.0-beta.5
[3.0.0-beta.4]: https://github.com/Redon-Tech/Emergency-Vehicle-Creator/releases/tag/3.0.0-beta.4
[3.0.0-beta.3]: https://github.com/Redon-Tech/Emergency-Vehicle-Creator/releases/tag/3.0.0-beta.3
Expand Down
2 changes: 1 addition & 1 deletion src/chassisHandler.luau
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ local exportHeader =
"-- Redon Tech Emergency Vehicle Creator, MIT License\n\n--DO NOT MODIFY BELOW\n--SUPPORT WILL BE VOIDED IF MODIFIED\n\nreturn "

-- version format: minor.{if rc then 0 else 1}patch
local latestVersion = 0.06
local latestVersion = 0.07
-- please ensure to update handler/EVHEvent/configuration/lightSettings.luau if you update this

export type color = {
Expand Down
2 changes: 1 addition & 1 deletion src/handler/EVHEvent/configuration/lightSettings.luau
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
--SUPPORT WILL BE VOIDED IF MODIFIED

return {
version = 0.06,
version = 0.07,
colors = {
{
name = "Blue",
Expand Down
2 changes: 1 addition & 1 deletion src/init.server.luau
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if not game:GetService("RunService"):IsEdit() then
return
end

local VERSION = "3.0.0-beta.5"
local VERSION = "3.0.0-beta.6"
local IS_DEV = false
if IS_DEV then
game:GetService("LogService"):ClearOutput()
Expand Down

0 comments on commit ecc4519

Please sign in to comment.