Skip to content

Commit

Permalink
Merge tag 'v1.1.0' into develop
Browse files Browse the repository at this point in the history
newtype 1.1.0 - Anastasia

* Implement support for the derivation of iterator functions and types
  • Loading branch information
fmorgner committed Mar 1, 2020
2 parents 0816884 + 1bd3504 commit 4d069aa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
6 changes: 3 additions & 3 deletions doc/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
# -- 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 ---------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions include/newtype/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4d069aa

Please sign in to comment.