Skip to content

Commit

Permalink
v4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RobLoach committed Nov 20, 2021
1 parent f07380e commit b3891b5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.0.1] - 2021-11-20
### Changes
- Fix compiler warning

## [4.0.0] - 2021-11-04
### Changes
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.11)
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
project (raylib-cpp
VERSION 4.0.0
VERSION 4.0.1
DESCRIPTION "raylib-cpp C++ Object Oriented Wrapper for raylib"
HOMEPAGE_URL "https://github.com/robloach/raylib-cpp"
LANGUAGES C CXX)
Expand Down
2 changes: 2 additions & 0 deletions include/AudioDevice.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ class AudioDevice {

/**
* Set master volume (listener).
*
* @param volume The desired volume to set.
*/
inline AudioDevice& SetVolume(float volume) {
::SetMasterVolume(volume);
Expand Down
19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "raylib-cpp",
"version": "4.0.0",
"version": "4.0.1",
"description": "raylib-cpp: C++ Object-Oriented Wrapper for raylib",
"homepage": "https://github.com/robloach/raylib-cpp",
"bugs": {
Expand All @@ -21,7 +21,8 @@
],
"license": "Zlib",
"scripts": {
"test": "git submodule update --init && mkdir -p build && cd build && cmake .. && make && make test"
"pretest": "git submodule update --init",
"test": "mkdir build && cd build && cmake .. && make && make test"
},
"src": [
"include/AudioDevice.hpp",
Expand All @@ -30,27 +31,27 @@
"include/Camera2D.hpp",
"include/Camera3D.hpp",
"include/Color.hpp",
"include/Functions.hpp",
"include/Font.hpp",
"include/Functions.hpp",
"include/Gamepad.hpp",
"include/Image.hpp",
"include/Material.hpp",
"include/Matrix.hpp",
"include/Mesh.hpp",
"include/ModelAnimation.hpp",
"include/Model.hpp",
"include/ModelAnimation.hpp",
"include/Mouse.hpp",
"include/Music.hpp",
"include/physac.hpp",
"include/Physics.hpp",
"include/RayHitInfo.hpp",
"include/Ray.hpp",
"include/raymath.hpp",
"include/raylib.hpp",
"include/raylib-cpp.hpp",
"include/RayCollision.hpp",
"include/raylib-cpp-utils.hpp",
"include/raylib-cpp.hpp",
"include/raylib.hpp",
"include/raymath.hpp",
"include/Rectangle.hpp",
"include/RenderTexture2D.hpp",
"include/RenderTexture.hpp",
"include/Shader.hpp",
"include/Sound.hpp",
"include/Text.hpp",
Expand Down

0 comments on commit b3891b5

Please sign in to comment.