From 4fdd1be5d811b6bfaffe336be0a56521c2e8e435 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Tue, 12 Mar 2019 23:13:56 +0100 Subject: [PATCH] 0.1.1 --- CHANGELOG.md | 3 +++ main.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d04bb3..984c7ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,5 +4,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 0.1.1 +* Fix parameter passed to `mmm_before_setup`, `mmm_after_setup`, `mmm_unload`. + ## 0.1.0 * Initial release. diff --git a/main.c b/main.c index 3d3602a..c48f59c 100644 --- a/main.c +++ b/main.c @@ -4,7 +4,7 @@ #include "hook.h" #include "mmmod.h" -#define MMMOD_VERSION "0.1.0" +#define MMMOD_VERSION "0.1.1" #ifdef DEBUG # define dbg_print(...) printf("[mmmod] " __VA_ARGS__); fflush(stdout)