diff --git a/src/anbox/version.h b/src/anbox/version.h index 6b45a5454e97c25f44c6fc186cdf0da16e47e685..11617aea10401a6a97e44cab6f540589f982d7c2 100644 --- a/src/anbox/version.h +++ b/src/anbox/version.h @@ -27,15 +27,15 @@ namespace build { /// @brief version_major marks the major version of the library. The constant is /// meant to be used /// by client code both at build and runtime, enabling version checks. -static constexpr const std::uint32_t version_major{1}; +static constexpr const std::uint32_t version_major{0}; /// @brief version_major marks the minor version of the library. The constant is /// meant to be used /// by client code both at build and runtime, enabling version checks. -static constexpr const std::uint32_t version_minor{0}; +static constexpr const std::uint32_t version_minor{1}; /// @brief version_patch marks the major version of the library. The constant is /// meant to be used /// by client code both at build and runtime, enabling version checks. -static constexpr const std::uint32_t version_patch{1}; +static constexpr const std::uint32_t version_patch{0}; } // namespace build /// @brief version queries the version of the library, placing the result in