aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--LICENSE2
-rw-r--r--doc/src/conf.py6
-rw-r--r--include/newtype/version.hpp6
4 files changed, 8 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0a81d64..3c29a76 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION "3.9.0")
project("newtype"
- VERSION "1.0.2"
+ VERSION "1.1.0"
LANGUAGES CXX
DESCRIPTION "A library of types and functions to create strong type aliases"
)
diff --git a/LICENSE b/LICENSE
index 3959b78..18858da 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2019, Felix Morgner <felix.morgner@gmail.com>, all rights reserved
+Copyright (c) 2020, Felix Morgner <felix.morgner@gmail.com>, all rights reserved
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
diff --git a/doc/src/conf.py b/doc/src/conf.py
index 437d275..1337ce3 100644
--- a/doc/src/conf.py
+++ b/doc/src/conf.py
@@ -6,10 +6,10 @@ import os
# -- Project information -----------------------------------------------------
project = 'newtype'
-copyright = '2019, Felix Morgner'
+copyright = '2020, Felix Morgner'
author = 'Felix Morgner'
-version = '1.0'
-release = '1.0.0'
+version = '1.1'
+release = '1.1.0'
# -- General configuration ---------------------------------------------------
diff --git a/include/newtype/version.hpp b/include/newtype/version.hpp
index b2dd19b..8678514 100644
--- a/include/newtype/version.hpp
+++ b/include/newtype/version.hpp
@@ -13,9 +13,9 @@ namespace nt
char const * const name;
} version{
.major = 1,
- .minor = 0,
- .patch = 2,
- .name = "Francesca",
+ .minor = 1,
+ .patch = 0,
+ .name = "Anastasia",
};
} // namespace nt