Pumps versions.

This commit is contained in:
Martín Lucas Golini
2024-06-05 00:23:40 -03:00
parent c8288ed568
commit 0d4b18dd79
7 changed files with 11 additions and 11 deletions

View File

@@ -5,9 +5,9 @@
#include <string>
#define EEPP_MAJOR_VERSION 2
#define EEPP_MINOR_VERSION 7
#define EEPP_PATCH_LEVEL 2
#define EEPP_CODENAME "Kāla"
#define EEPP_MINOR_VERSION 8
#define EEPP_PATCH_LEVEL 0
#define EEPP_CODENAME "Siddhi"
/** The compiled version of the library */
#define EEPP_VERSION( x ) \

View File

@@ -63,7 +63,7 @@ class AutoCompletePlugin : public Plugin {
"Auto complete shows the completion popup as you type, so you can fill "
"in long words by typing only a few characters.",
AutoCompletePlugin::New,
{ 0, 2, 3 },
{ 0, 2, 4 },
AutoCompletePlugin::NewSync };
}

View File

@@ -59,7 +59,7 @@ class LinterPlugin : public Plugin {
"Use static code analysis tool used to flag programming errors, bugs, "
"stylistic errors, and suspicious constructs.",
LinterPlugin::New,
{ 0, 2, 4 },
{ 0, 2, 5 },
LinterPlugin::NewSync };
}

View File

@@ -25,7 +25,7 @@ class LSPClientPlugin : public Plugin {
public:
static PluginDefinition Definition() {
return { "lspclient", "LSP Client", "Language Server Protocol Client.",
LSPClientPlugin::New, { 0, 2, 5 }, LSPClientPlugin::NewSync };
LSPClientPlugin::New, { 0, 2, 6 }, LSPClientPlugin::NewSync };
}
static Plugin* New( PluginManager* pluginManager );

View File

@@ -20,7 +20,7 @@ class XMLToolsPlugin : public PluginBase {
"XML Tools",
"Simple tools to improve your XML editing experience.",
XMLToolsPlugin::New,
{ 0, 0, 2 },
{ 0, 0, 3 },
XMLToolsPlugin::NewSync };
}

View File

@@ -7,9 +7,9 @@
using namespace EE;
#define ECODE_MAJOR_VERSION 0
#define ECODE_MINOR_VERSION 5
#define ECODE_PATCH_LEVEL 2
#define ECODE_CODENAME "Ākāśa"
#define ECODE_MINOR_VERSION 6
#define ECODE_PATCH_LEVEL 0
#define ECODE_CODENAME "Prāpti"
/** The compiled version of the library */
#define ECODE_VERSION( x ) \