Skip to content

Commit

Permalink
Merge pull request #147 from Gnimuc/v3
Browse files Browse the repository at this point in the history
Prepare for v3
  • Loading branch information
JamesWrigley authored Sep 11, 2024
2 parents 7a6b192 + 17842c3 commit 65e82eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/_changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CurrentModule = CImGui
This documents notable changes in CImGui.jl. The format is based on [Keep a
Changelog](https://keepachangelog.com).

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

### Added
- [`HelpMarker()`](@ref), a port of the same function from the Dear ImGui demo
Expand All @@ -24,7 +24,7 @@ Changelog](https://keepachangelog.com).
([#141]), which is far easier to maintain but it's possible that some
functions will have changed signatures or been renamed. Here's a
(non-exhaustive) list of known changes:
- [`Combo()`](@ref) now longer requires passing the length of `items`.
- [`Combo()`](@ref) no longer requires passing the length of `items`.
- The old `Value*()` functions are now just named [`Value()`](@ref) and use
dispatch to select the right ImGui function to call.
- The `Combo()` and `ListBox()` methods that allowed passing a function to
Expand Down

2 comments on commit 65e82eb

@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/115025

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.0.0 -m "<description of version>" 65e82ebe12c9b04582d9b439151016a7327f6bb7
git push origin v3.0.0

Please sign in to comment.