Skip to content
Snippets Groups Projects
Verified Commit ea96b63f authored by Timm Fitschen's avatar Timm Fitschen
Browse files

use int32 instead of uint32

parent 12f07226
No related branches found
No related tags found
No related merge requests found
......@@ -28,11 +28,11 @@ package caosdb.info.v1alpha1;
// The version of an agent (following SemVer 2.0.0)
message VersionInfo {
// Major version number
uint32 major = 1;
int32 major = 1;
// Minor version number
uint32 minor = 2;
int32 minor = 2;
// Patch version
uint32 patch = 3;
int32 patch = 3;
// Pre-release version
string pre_release = 4;
// Build metadata
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment