Skip to content

Commit

Permalink
Change version to 2.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikir committed Oct 4, 2023
1 parent 58e83a8 commit 4bc7337
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion compiler/core/src/zserio/tools/ZserioVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private int comparePreRelease(Integer otherPreRelease)
}

/** ZserioTool version string. */
public static final String VERSION_STRING = "2.11.0";
public static final String VERSION_STRING = "2.12.0";

private final int major;
private final int minor;
Expand Down
2 changes: 1 addition & 1 deletion compiler/extensions/cpp/runtime/doc/doxyfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT_NAME = Zserio
PROJECT_NUMBER = 2.11.0
PROJECT_NUMBER = 2.12.0
PROJECT_BRIEF = "C++ runtime library"
OUTPUT_DIRECTORY = "$(ZSERIO_CPP_RUNTIME_OUTPUT_DIR)"
DISTRIBUTE_GROUP_DOC = YES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
/**
* C++ extension runtime version string.
*/
constexpr const char* CPP_EXTENSION_RUNTIME_VERSION_STRING = "2.11.0";
constexpr const char* CPP_EXTENSION_RUNTIME_VERSION_STRING = "2.12.0";

/**
* C++ extension runtime version in integer value to allow version checking in generated code.
*/
#define CPP_EXTENSION_RUNTIME_VERSION_NUMBER 2011000
#define CPP_EXTENSION_RUNTIME_VERSION_NUMBER 2012000

#endif // ifndef ZSERIO_CPP_RUNTIME_VERSION_H_INC
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
public class CppExtensionVersion
{
/** C++ extension version string. */
public static final String VERSION_STRING = "2.11.0";
public static final String VERSION_STRING = "2.12.0";

/** C++ extension version in integer value to allow version checking in generated code. */
public static final long VERSION_NUMBER = 2011000;
public static final long VERSION_NUMBER = 2012000;
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
*/
class DocExtensionVersion
{
public static final String VERSION_STRING = "2.11.0";
public static final String VERSION_STRING = "2.12.0";
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
public class JavaExtensionVersion
{
/** Java extension version string. */
public static final String VERSION_STRING = "2.11.0";
public static final String VERSION_STRING = "2.12.0";
}
2 changes: 1 addition & 1 deletion compiler/extensions/python/runtime/src/zserio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@


#: Zserio Python runtime library version string.
VERSION_STRING = "2.11.0"
VERSION_STRING = "2.12.0"
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
class PythonExtensionVersion
{
/** Python extension version string. */
public static final String VERSION_STRING = "2.11.0";
public static final String VERSION_STRING = "2.12.0";
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
public class XmlExtensionVersion
{
/** XML extension version string. */
public static final String VERSION_STRING = "2.11.0";
public static final String VERSION_STRING = "2.12.0";
}

0 comments on commit 4bc7337

Please sign in to comment.