Skip to content

Commit b82b9ed

Browse files
committed
Updating version to 0.10.0
1 parent f69c8b7 commit b82b9ed

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

HISTORY.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.10.0
2+
3+
New Features:
4+
* LV2 plugin support
5+
* Ableton Link support
6+
* Multiple midi input and output ports
7+
8+
Fixes:
9+
* Updated example configuration files
10+
111
## 0.9.1
212

313
New Features:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,4 @@ Path | Typespec | Arguments
112112
/engine/set_timing_statistics_enabled | i | 1 = enabled, 0 = disabled
113113
/engine/reset_timing_statstics | s(s) | reset target ("all", "track", "processor"), track name/processor name
114114

115-
Copyright 2017-2019 Modern Ancient Instruments Networked AB, dba Elk, Stockholm, Sweden.
115+
Copyright 2017-2020 Modern Ancient Instruments Networked AB, dba Elk, Stockholm, Sweden.

include/version.h.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#define __version_h__
33

44
#define SUSHI__VERSION_MAJ 0
5-
#define SUSHI__VERSION_MIN 9
6-
#define SUSHI__VERSION_REV 1
5+
#define SUSHI__VERSION_MIN 10
6+
#define SUSHI__VERSION_REV 0
77

88
#define SUSHI_VERSION_STRING #SUSHI__VERSION_MAJ "." #SUSHI__VERSION_MIN "." #SUSHI__VERSION_REV
99

src/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017-2019 Modern Ancient Instruments Networked AB, dba Elk
2+
* Copyright 2017-2020 Modern Ancient Instruments Networked AB, dba Elk
33
*
44
* SUSHI is free software: you can redistribute it and/or modify it under the terms of
55
* the GNU Affero General Public License as published by the Free Software Foundation,
@@ -15,7 +15,7 @@
1515

1616
/**
1717
* @brief Main entry point to Sushi
18-
* @copyright 2017-2019 Modern Ancient Instruments Networked AB, dba Elk, Stockholm
18+
* @copyright 2017-2020 Modern Ancient Instruments Networked AB, dba Elk, Stockholm
1919
*/
2020

2121
#include <vector>
@@ -89,7 +89,7 @@ void sigint_handler([[maybe_unused]] int sig)
8989

9090
void print_sushi_headline()
9191
{
92-
std::cout << "SUSHI - Copyright 2017-2019 Elk, Stockholm" << std::endl;
92+
std::cout << "SUSHI - Copyright 2017-2020 Elk, Stockholm" << std::endl;
9393
std::cout << "SUSHI is licensed under the Affero GPL 3.0. Source code is available at github.com/elk-audio" << std::endl;
9494
}
9595

0 commit comments

Comments
 (0)