Skip to content

Commit

Permalink
Merge pull request #9 from JuliaImGui/compat
Browse files Browse the repository at this point in the history
Add compat for CImGui v4 and bump version
  • Loading branch information
JamesWrigley authored Dec 19, 2024
2 parents ee4b718 + b8023bf commit d6e0656
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ImGuiTestEngine"
uuid = "464e2eba-0a11-4ed3-b274-413caa1a1cca"
authors = ["JamesWrigley <[email protected]>"]
version = "0.1.4"
version = "0.1.5"

[deps]
CImGui = "5d785b6c-b76f-510e-a07c-3070796c7e87"
Expand All @@ -13,7 +13,7 @@ ScopedValues = "7e506255-f358-4e82-b7e4-beb19740aa63"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
CImGui = "2,3"
CImGui = "2,3,4"
CImGuiPack_jll = "0.3,0.4,0.5,0.6,0.7"
Compat = "4.15.0"
CxxWrap = "0.16.0"
Expand Down
4 changes: 4 additions & 0 deletions docs/src/_changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ CurrentModule = ImGuiTestEngine
This documents notable changes in ImGuiTestEngine.jl. The format is based on
[Keep a Changelog](https://keepachangelog.com).

## [v0.1.5] - 2024-12-19

Patch release to actually add compat for CImGui v4 ([#9]).

## [v0.1.4] - 2024-11-19

Patch release to fix compat for CImGui v4/Dear ImGui 1.91.5 ([#8]).
Expand Down

2 comments on commit d6e0656

@JamesWrigley
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/121671

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.5 -m "<description of version>" d6e0656aa3c40e0a49565fdaf07723e016694c95
git push origin v0.1.5

Please sign in to comment.