Skip to content

Commit

Permalink
Merge pull request #152 from Gnimuc/v1.91.2
Browse files Browse the repository at this point in the history
Update for v1.91.2
  • Loading branch information
JamesWrigley authored Oct 8, 2024
2 parents 65e82eb + 5cbad84 commit 206783e
Show file tree
Hide file tree
Showing 17 changed files with 5,267 additions and 5,788 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "CImGui"
uuid = "5d785b6c-b76f-510e-a07c-3070796c7e87"
authors = ["Yupei Qi <qiyupei@gmail.com>"]
version = "3.0.0"
version = "3.1.0"

[deps]
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
Expand All @@ -23,7 +23,7 @@ MakieIntegration = ["GLFW", "ModernGL", "GLMakie"]

[compat]
CEnum = "0.4, 0.5"
CImGuiPack_jll = "0.5.0"
CImGuiPack_jll = "0.6.0"
CSyntax = "0.4"
Compat = "4.16.0"
DocStringExtensions = "0.9.3"
Expand Down
8 changes: 8 additions & 0 deletions docs/src/_changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ CurrentModule = CImGui
This documents notable changes in CImGui.jl. The format is based on [Keep a
Changelog](https://keepachangelog.com).

## [v3.1.0] - 2024-10-08

### Changed
- Updated to [Dear ImGui
1.91.2](https://github.com/ocornut/imgui/releases/tag/v1.91.2), which
shouldn't have any breaing changes [(#152)]. We didn't bother going with
1.91.3 because that does have some breaking changes.

## [v3.0.0] - 2024-09-11

### Added
Expand Down
601 changes: 282 additions & 319 deletions lib/aarch64-apple-darwin20.jl

Large diffs are not rendered by default.

601 changes: 282 additions & 319 deletions lib/aarch64-linux-gnu.jl

Large diffs are not rendered by default.

601 changes: 282 additions & 319 deletions lib/aarch64-linux-musl.jl

Large diffs are not rendered by default.

601 changes: 282 additions & 319 deletions lib/armv7l-linux-gnueabihf.jl

Large diffs are not rendered by default.

601 changes: 282 additions & 319 deletions lib/armv7l-linux-musleabihf.jl

Large diffs are not rendered by default.

601 changes: 282 additions & 319 deletions lib/i686-linux-gnu.jl

Large diffs are not rendered by default.

601 changes: 282 additions & 319 deletions lib/i686-linux-musl.jl

Large diffs are not rendered by default.

601 changes: 282 additions & 319 deletions lib/i686-w64-mingw32.jl

Large diffs are not rendered by default.

601 changes: 282 additions & 319 deletions lib/powerpc64le-linux-gnu.jl

Large diffs are not rendered by default.

601 changes: 282 additions & 319 deletions lib/x86_64-apple-darwin14.jl

Large diffs are not rendered by default.

601 changes: 282 additions & 319 deletions lib/x86_64-linux-gnu.jl

Large diffs are not rendered by default.

601 changes: 282 additions & 319 deletions lib/x86_64-linux-musl.jl

Large diffs are not rendered by default.

601 changes: 282 additions & 319 deletions lib/x86_64-unknown-freebsd13.2.jl

Large diffs are not rendered by default.

601 changes: 282 additions & 319 deletions lib/x86_64-w64-mingw32.jl

Large diffs are not rendered by default.

Loading

2 comments on commit 206783e

@JamesWrigley
Copy link
Collaborator 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/116808

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 v3.1.0 -m "<description of version>" 206783ecdd32760d6b4c915b95dc8ff893f13737
git push origin v3.1.0

Please sign in to comment.