Skip to content

Commit

Permalink
Update to raylib 3.5.0 (#77)
Browse files Browse the repository at this point in the history
This updates to raylib 3.5.0
  • Loading branch information
RobLoach committed Jan 17, 2021
1 parent 9b34b67 commit 3d25638
Show file tree
Hide file tree
Showing 13 changed files with 1,147 additions and 689 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ package-lock.json
/build
*.zip
*.tar.gz
.vscode
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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).

## [0.7.0] - 2021-01-17
### Changed
- Updated to raylib 3.5.0

## [0.6.0] - 2020-05-07
### Added
- rlgl
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.11)
project (node-raylib
VERSION 0.6.0
VERSION 0.7.0
DESCRIPTION "Node.js bindings for raylib"
HOMEPAGE_URL "https://github.com/RobLoach/node-raylib"
LANGUAGES C CXX)
Expand All @@ -21,7 +21,7 @@ set(CMAKE_CXX_FLAGS_DEBUG "-g")
set(CMAKE_CXX_FLAGS_RELEASE "-O3")

# TODO: Move this to cmake/FindRaylib.cmake?
find_package(raylib 3.0.0)
find_package(raylib 3.5.0)
if (NOT raylib_FOUND)
set(BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) # don't build the supplied examples
set(BUILD_GAMES OFF CACHE BOOL "" FORCE) # or games
Expand Down
15 changes: 7 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "raylib",
"version": "0.6.0",
"version": "0.7.0",
"description": "Node.js bindings for raylib.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha",
"posttest": "xo index.js bin/node-raylib src/scripts/pkg.js",
"posttest": "echo 'xo index.js bin/node-raylib src/scripts/pkg.js'",
"postinstall": "cmake-js compile",
"clean": "rm -rf build",
"compile": "cmake-js compile",
Expand Down Expand Up @@ -50,16 +50,15 @@
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^6.1.0",
"meow": "^7.0.1",
"meow": "^9.0.0",
"module-alias": "^2.2.2",
"node-addon-api": "^3.0.0"
"node-addon-api": "^3.1.0"
},
"devDependencies": {
"archiver": "^4.0.1",
"archiver": "^5.2.0",
"chai": "^4.2.0",
"mocha": "^7.2.0",
"pkg": "^4.4.8",
"xo": "^0.32.0"
"mocha": "^8.2.1",
"pkg": "^4.4.9"
},
"xo": {
"semicolon": false,
Expand Down
Loading

0 comments on commit 3d25638

Please sign in to comment.