aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--README.md2
-rw-r--r--include/adlmidi.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 60c9b4c..bdcb92e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,5 @@
cmake_minimum_required (VERSION 3.2)
-project (libADLMIDI VERSION 1.4.1 LANGUAGES C CXX)
+project (libADLMIDI VERSION 1.5.0 LANGUAGES C CXX)
include(GNUInstallDirs)
include(CheckCCompilerFlag)
diff --git a/README.md b/README.md
index b686063..17f62c8 100644
--- a/README.md
+++ b/README.md
@@ -175,7 +175,7 @@ To build that example you will need to have installed SDL2 library.
* Add support of MIDI Format 2 files
# Changelog
-## 1.4.1 dev
+## 1.5.0 dev
* Drum note length expanding is now supported in real-time mode (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!)
* Channels manager has been improved (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!)
* Nuked OPL3 1.8 emulator got some optimizations ported from 1.7 where they are was applied previously (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!)
diff --git a/include/adlmidi.h b/include/adlmidi.h
index a9b2f9f..c26e0ed 100644
--- a/include/adlmidi.h
+++ b/include/adlmidi.h
@@ -29,8 +29,8 @@ extern "C" {
#endif
#define ADLMIDI_VERSION_MAJOR 1
-#define ADLMIDI_VERSION_MINOR 4
-#define ADLMIDI_VERSION_PATCHLEVEL 1
+#define ADLMIDI_VERSION_MINOR 5
+#define ADLMIDI_VERSION_PATCHLEVEL 0
#define ADLMIDI_TOSTR_I(s) #s
#define ADLMIDI_TOSTR(s) ADLMIDI_TOSTR_I(s)