diff --git a/src/anbox/version.h b/src/anbox/version.h index 6b45a54..11617ae 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