Skip to content

Commit b3891b5

Browse files
committed
v4.0.1
1 parent f07380e commit b3891b5

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [4.0.1] - 2021-11-20
8+
### Changes
9+
- Fix compiler warning
710

811
## [4.0.0] - 2021-11-04
912
### Changes

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.11)
22
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
33
project (raylib-cpp
4-
VERSION 4.0.0
4+
VERSION 4.0.1
55
DESCRIPTION "raylib-cpp C++ Object Oriented Wrapper for raylib"
66
HOMEPAGE_URL "https://github.com/robloach/raylib-cpp"
77
LANGUAGES C CXX)

include/AudioDevice.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ class AudioDevice {
5252

5353
/**
5454
* Set master volume (listener).
55+
*
56+
* @param volume The desired volume to set.
5557
*/
5658
inline AudioDevice& SetVolume(float volume) {
5759
::SetMasterVolume(volume);

package.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "raylib-cpp",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "raylib-cpp: C++ Object-Oriented Wrapper for raylib",
55
"homepage": "https://github.com/robloach/raylib-cpp",
66
"bugs": {
@@ -21,7 +21,8 @@
2121
],
2222
"license": "Zlib",
2323
"scripts": {
24-
"test": "git submodule update --init && mkdir -p build && cd build && cmake .. && make && make test"
24+
"pretest": "git submodule update --init",
25+
"test": "mkdir build && cd build && cmake .. && make && make test"
2526
},
2627
"src": [
2728
"include/AudioDevice.hpp",
@@ -30,27 +31,27 @@
3031
"include/Camera2D.hpp",
3132
"include/Camera3D.hpp",
3233
"include/Color.hpp",
33-
"include/Functions.hpp",
3434
"include/Font.hpp",
35+
"include/Functions.hpp",
3536
"include/Gamepad.hpp",
3637
"include/Image.hpp",
3738
"include/Material.hpp",
3839
"include/Matrix.hpp",
3940
"include/Mesh.hpp",
40-
"include/ModelAnimation.hpp",
4141
"include/Model.hpp",
42+
"include/ModelAnimation.hpp",
4243
"include/Mouse.hpp",
4344
"include/Music.hpp",
4445
"include/physac.hpp",
4546
"include/Physics.hpp",
46-
"include/RayHitInfo.hpp",
4747
"include/Ray.hpp",
48-
"include/raymath.hpp",
49-
"include/raylib.hpp",
50-
"include/raylib-cpp.hpp",
48+
"include/RayCollision.hpp",
5149
"include/raylib-cpp-utils.hpp",
50+
"include/raylib-cpp.hpp",
51+
"include/raylib.hpp",
52+
"include/raymath.hpp",
5253
"include/Rectangle.hpp",
53-
"include/RenderTexture2D.hpp",
54+
"include/RenderTexture.hpp",
5455
"include/Shader.hpp",
5556
"include/Sound.hpp",
5657
"include/Text.hpp",

0 commit comments

Comments
 (0)