From 87494350c87fbc6c463593f52469e551fce83c24 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Mon, 24 Dec 2018 18:02:37 -0500 Subject: [PATCH] Update documentation --- CHANGELOG.md | 2 +- docs/Doxyfile | 2 +- src/ChaiLove.h | 10 ++++------ 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0dbfd6..7445f8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to [ChaiLove](https://github.com/RobLoach/ChaiLove) will be The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## 0.31.0 - Unreleased +## 0.31.0 - 2018-12-24 ### Chores - Update to use the libretro audio callback diff --git a/docs/Doxyfile b/docs/Doxyfile index 7a8f3a8..ea7c882 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -23,7 +23,7 @@ PROJECT_NAME = "ChaiLove API" # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = "0.30.0" +PROJECT_NUMBER = "0.31.0" # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/src/ChaiLove.h b/src/ChaiLove.h index 8ca1621..1e0d0f7 100644 --- a/src/ChaiLove.h +++ b/src/ChaiLove.h @@ -23,11 +23,9 @@ * This is the full source for "hello world" in ChaiLove, using a `main.chai` file. Running this code will cause an 640 by 480 window to appear, and display white text on a black background. * * @code - * global logo - * global x = 10.0f - * * def load() { - * logo = love.graphics.newImage("logo.png") + * global logo = love.graphics.newImage("logo.png") + * global x = 10.0f * } * * def draw() { @@ -47,9 +45,9 @@ #define SRC_CHAILOVE_H_ #define CHAILOVE_VERSION_MAJOR 0 -#define CHAILOVE_VERSION_MINOR 30 +#define CHAILOVE_VERSION_MINOR 31 #define CHAILOVE_VERSION_PATCH 0 -#define CHAILOVE_VERSION_STRING "0.30.0" +#define CHAILOVE_VERSION_STRING "0.31.0" #include "SDL.h" #include "libretro.h"