From 6e70e11df9815a35652753958297bbf166d69104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Thu, 26 Apr 2018 03:32:56 +0200 Subject: [PATCH] Bump version and copyright years. --- LICENSE | 4 ++-- configure.ac | 2 +- debian/copyright | 4 ++-- include/cryb/oath.h | 2 +- include/cryb/oath_constants.h | 1 + include/cryb/oath_types.h | 1 + include/cryb/rand.h | 2 +- lib/oath/cryb_oath_hotp.c | 1 + lib/oath/cryb_oath_key_create.c | 1 + lib/oath/cryb_oath_key_dummy.c | 1 + lib/oath/cryb_oath_key_to_uri.c | 1 + lib/oath/cryb_oath_totp.c | 1 + lib/rand/cryb_rand_bytes.c | 1 + t/t_cxx.cc | 2 +- 14 files changed, 16 insertions(+), 8 deletions(-) diff --git a/LICENSE b/LICENSE index 3d28899..ae136a2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,8 +1,8 @@ Copyright (c) 2006-2007 Christophe Devine Copyright (c) 2005-2013 Colin Percival Copyright (c) 2013 Joachim Strömbergson -Copyright (c) 2012-2016 The University of Oslo -Copyright (c) 2011-2017 Dag-Erling Smørgrav +Copyright (c) 2012-2017 The University of Oslo +Copyright (c) 2011-2018 Dag-Erling Smørgrav All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/configure.ac b/configure.ac index 29ffa48..0d742a7 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.63]) -AC_INIT([cryb.to], [0.20170904], [des@des.no], [cryb-to], [http://cryb.to/]) +AC_INIT([cryb.to], [0.20180426], [des@des.no], [cryb-to], [http://cryb.to/]) AC_CONFIG_SRCDIR([include/cryb/core.h]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([foreign no-dist-gzip dist-xz]) diff --git a/debian/copyright b/debian/copyright index 0f948a0..ca00e4d 100644 --- a/debian/copyright +++ b/debian/copyright @@ -6,8 +6,8 @@ Files: * Copyright: 2006-2007 Christophe Devine 2005-2013 Colin Percival 2013 Joachim Strömbergson - 2012-2016 The University of Oslo - 2011-2017 Dag-Erling Smørgrav + 2012-2017 The University of Oslo + 2011-2018 Dag-Erling Smørgrav License: BSD-3-Clause Files: debian/* diff --git a/include/cryb/oath.h b/include/cryb/oath.h index 6248caa..e0f87fd 100644 --- a/include/cryb/oath.h +++ b/include/cryb/oath.h @@ -1,6 +1,6 @@ /*- * Copyright (c) 2012-2014 The University of Oslo - * Copyright (c) 2013-2017 Dag-Erling Smørgrav + * Copyright (c) 2013-2018 Dag-Erling Smørgrav * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/include/cryb/oath_constants.h b/include/cryb/oath_constants.h index d487fc0..8c997eb 100644 --- a/include/cryb/oath_constants.h +++ b/include/cryb/oath_constants.h @@ -1,5 +1,6 @@ /*- * Copyright (c) 2012-2013 The University of Oslo + * Copyright (c) 2018 Dag-Erling Smørgrav * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/include/cryb/oath_types.h b/include/cryb/oath_types.h index 5641a4e..b01cd90 100644 --- a/include/cryb/oath_types.h +++ b/include/cryb/oath_types.h @@ -1,5 +1,6 @@ /*- * Copyright (c) 2012-2013 The University of Oslo + * Copyright (c) 2018 Dag-Erling Smørgrav * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/include/cryb/rand.h b/include/cryb/rand.h index 5a90e40..2055f5d 100644 --- a/include/cryb/rand.h +++ b/include/cryb/rand.h @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2014-2016 Dag-Erling Smørgrav + * Copyright (c) 2014-2018 Dag-Erling Smørgrav * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/lib/oath/cryb_oath_hotp.c b/lib/oath/cryb_oath_hotp.c index 7e4fb04..05bfa42 100644 --- a/lib/oath/cryb_oath_hotp.c +++ b/lib/oath/cryb_oath_hotp.c @@ -1,5 +1,6 @@ /*- * Copyright (c) 2012-2013 The University of Oslo + * Copyright (c) 2018 Dag-Erling Smørgrav * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/lib/oath/cryb_oath_key_create.c b/lib/oath/cryb_oath_key_create.c index bfc7019..1703a84 100644 --- a/lib/oath/cryb_oath_key_create.c +++ b/lib/oath/cryb_oath_key_create.c @@ -1,5 +1,6 @@ /*- * Copyright (c) 2013-2014 The University of Oslo + * Copyright (c) 2018 Dag-Erling Smørgrav * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/lib/oath/cryb_oath_key_dummy.c b/lib/oath/cryb_oath_key_dummy.c index 31b81f2..a5abe86 100644 --- a/lib/oath/cryb_oath_key_dummy.c +++ b/lib/oath/cryb_oath_key_dummy.c @@ -1,5 +1,6 @@ /*- * Copyright (c) 2013 The University of Oslo + * Copyright (c) 2018 Dag-Erling Smørgrav * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/lib/oath/cryb_oath_key_to_uri.c b/lib/oath/cryb_oath_key_to_uri.c index 65a3d9b..969c35b 100644 --- a/lib/oath/cryb_oath_key_to_uri.c +++ b/lib/oath/cryb_oath_key_to_uri.c @@ -1,5 +1,6 @@ /*- * Copyright (c) 2013 The University of Oslo + * Copyright (c) 2018 Dag-Erling Smørgrav * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/lib/oath/cryb_oath_totp.c b/lib/oath/cryb_oath_totp.c index 3d21d29..4d63c4f 100644 --- a/lib/oath/cryb_oath_totp.c +++ b/lib/oath/cryb_oath_totp.c @@ -1,5 +1,6 @@ /*- * Copyright (c) 2012-2013 The University of Oslo + * Copyright (c) 2018 Dag-Erling Smørgrav * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/lib/rand/cryb_rand_bytes.c b/lib/rand/cryb_rand_bytes.c index 8f9da66..fbe95a4 100644 --- a/lib/rand/cryb_rand_bytes.c +++ b/lib/rand/cryb_rand_bytes.c @@ -1,5 +1,6 @@ /*- * Copyright (c) 2014-2016 Dag-Erling Smørgrav + * Copyright (c) 2018 Dag-Erling Smørgrav * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/t/t_cxx.cc b/t/t_cxx.cc index 49e5c1a..9be219a 100644 --- a/t/t_cxx.cc +++ b/t/t_cxx.cc @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2017 Dag-Erling Smørgrav + * Copyright (c) 2017-2018 Dag-Erling Smørgrav * All rights reserved. * * Redistribution and use in source and binary forms, with or without