Skip to content

Commit

Permalink
Change version to 2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikir committed Oct 14, 2022
1 parent 22e930d commit ac9e6f4
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 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.7.0";
public static final String VERSION_STRING = "2.8.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.7.0
PROJECT_NUMBER = 2.8.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,6 +4,6 @@
/**
* C++ extension runtime version string.
*/
#define CPP_EXTENSION_RUNTIME_VERSION_STRING "2.7.0"
#define CPP_EXTENSION_RUNTIME_VERSION_STRING "2.8.0"

#endif // ifndef ZSERIO_CPP_RUNTIME_VERSION_H_INC
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
public class CppExtensionVersion
{
/** C++ extension version string. */
public static final String VERSION_STRING = "2.7.0";
public static final String VERSION_STRING = "2.8.0";
}
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.7.0";
public static final String VERSION_STRING = "2.8.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.7.0";
public static final String VERSION_STRING = "2.8.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 @@ -49,4 +49,4 @@


#: Zserio Python runtime library version string.
VERSION_STRING = "2.7.0"
VERSION_STRING = "2.8.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.7.0";
public static final String VERSION_STRING = "2.8.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.7.0";
public static final String VERSION_STRING = "2.8.0";
}

0 comments on commit ac9e6f4

Please sign in to comment.