Skip to content

Commit

Permalink
6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GValiente committed Feb 4, 2021
1 parent ee4b3ed commit 14e215c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion butano/include/bn_documentation.h
Original file line number Diff line number Diff line change
Expand Up @@ -1379,7 +1379,7 @@
* @tableofcontents
*
*
* @section changelog_6_0_0 6.0.0 (next release)
* @section changelog_6_0_0 6.0.0
*
* * Rumble support (if your cart supports it). See @ref rumble and the `rumble` example.
* * bn::sprites::reload added.
Expand Down
6 changes: 3 additions & 3 deletions butano/include/bn_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,23 @@ namespace bn::version
*/
[[nodiscard]] constexpr int major()
{
return 5;
return 6;
}

/**
* @brief Returns the current minor version.
*/
[[nodiscard]] constexpr int minor()
{
return 3;
return 0;
}

/**
* @brief Returns the current patch version.
*/
[[nodiscard]] constexpr int patch()
{
return 1;
return 0;
}
}

Expand Down
Loading

0 comments on commit 14e215c

Please sign in to comment.