aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2020-01-05 11:42:15 +0100
committerFelix Morgner <felix.morgner@gmail.com>2020-01-05 11:44:26 +0100
commitab2876053a6063de237c836ac0226f01e74f1023 (patch)
tree033e371638ffac398df00f72493b2351e12b73e8 /include
parent6dd5aa208b6ab7f118f4c7ce48b3bb071befb294 (diff)
downloadnewtype-ab2876053a6063de237c836ac0226f01e74f1023.tar.xz
newtype-ab2876053a6063de237c836ac0226f01e74f1023.zip
newtype: bump version to 1.0.0
Diffstat (limited to 'include')
-rw-r--r--include/newtype/version.hpp23
1 files changed, 23 insertions, 0 deletions
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