add Roberto to list of authors; credit where credit is due

This commit is contained in:
Radovan Bast 2017-11-11 13:10:50 +01:00
parent 37d02eebcd
commit f1f2afa6fa
4 changed files with 6 additions and 6 deletions

View File

@ -1,14 +1,14 @@
# Authors # Authors
- Jonas Juselius
- Radovan Bast - Radovan Bast
- Roberto Di Remigio
- Jonas Juselius
# Contributors # Contributors
- Miroslav Ilias (Windows, portability, earliest adopter testing and feedback, math library testing) - Miroslav Ilias (Windows, portability, earliest adopter testing and feedback, math library testing)
- Ivan Hrasko (Windows, Appveyor testing) - Ivan Hrasko (Windows, Appveyor testing)
- Dan Jonsson (idea for configuration file approach which preceded YAML solution) - Dan Jonsson (idea for configuration file approach which preceded YAML solution)
- Roberto Di Remigio (design ideas and testing, OS X testing, Boost)
For a list of all the contributions, For a list of all the contributions,
see https://github.com/coderefinery/autocmake/contributors. see https://github.com/coderefinery/autocmake/contributors.

View File

@ -1,4 +1,4 @@
Copyright (c) 2015-2016 by Radovan Bast, Jonas Juselius, and contributors. Copyright (c) 2015-2017 by Radovan Bast, Roberto Di Remigio, Jonas Juselius, and contributors.
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without

View File

@ -40,7 +40,7 @@ def autogenerated_notice():
s = [] s = []
s.append('# This file is autogenerated by Autocmake v{0} http://autocmake.org'.format(__version__)) s.append('# This file is autogenerated by Autocmake v{0} http://autocmake.org'.format(__version__))
s.append('# Copyright (c) {0} by Radovan Bast, Jonas Juselius, and contributors.'.format(year_range)) s.append('# Copyright (c) {0} by Radovan Bast, Roberto Di Remigio, Jonas Juselius, and contributors.'.format(year_range))
return '\n'.join(s) return '\n'.join(s)

View File

@ -56,8 +56,8 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Autocmake' project = u'Autocmake'
copyright = u'2015-2016, Radovan Bast, Jonas Juselius, and contributors' copyright = u'2015-2017, Radovan Bast, Roberto Di Remigio, Jonas Juselius, and contributors'
author = u'Radovan Bast, Jonas Juselius, and contributors' author = u'Radovan Bast, Roberto Di Remigio, Jonas Juselius, and contributors'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the