From ab2876053a6063de237c836ac0226f01e74f1023 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Sun, 5 Jan 2020 11:42:15 +0100 Subject: newtype: bump version to 1.0.0 --- include/newtype/version.hpp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 include/newtype/version.hpp (limited to 'include') diff --git a/include/newtype/version.hpp b/include/newtype/version.hpp new file mode 100644 index 0000000..c7c3314 --- /dev/null +++ b/include/newtype/version.hpp @@ -0,0 +1,23 @@ +#ifndef NEWTYPE_VERSION_HPP +#define NEWTYPE_VERSION_HPP + +namespace nt +{ + + constexpr struct + { + int const major; + int const minor; + int const patch; + + char const * const name; + } version{ + .major = 1, + .minor = 0, + .patch = 0, + .name = "Francesca", + }; + +} // namespace nt + +#endif \ No newline at end of file -- cgit v1.2.3