summaryrefslogtreecommitdiffstats
path: root/lib/redmine
diff options
context:
space:
mode:
Diffstat (limited to 'lib/redmine')
-rw-r--r--lib/redmine/access_control.rb2
-rw-r--r--lib/redmine/access_keys.rb2
-rw-r--r--lib/redmine/activity.rb2
-rw-r--r--lib/redmine/activity/fetcher.rb2
-rw-r--r--lib/redmine/acts/positioned.rb2
-rw-r--r--lib/redmine/ciphering.rb2
-rw-r--r--lib/redmine/configuration.rb2
-rw-r--r--lib/redmine/core_ext/active_record.rb2
-rw-r--r--lib/redmine/core_ext/string/conversions.rb2
-rw-r--r--lib/redmine/core_ext/string/inflections.rb2
-rw-r--r--lib/redmine/database.rb2
-rw-r--r--lib/redmine/default_data/loader.rb2
-rw-r--r--lib/redmine/export/csv.rb2
-rw-r--r--lib/redmine/export/pdf.rb2
-rw-r--r--lib/redmine/export/pdf/issues_pdf_helper.rb2
-rw-r--r--lib/redmine/export/pdf/wiki_pdf_helper.rb2
-rw-r--r--lib/redmine/field_format.rb2
-rw-r--r--lib/redmine/helpers/calendar.rb2
-rw-r--r--lib/redmine/helpers/diff.rb2
-rw-r--r--lib/redmine/helpers/gantt.rb2
-rw-r--r--lib/redmine/helpers/time_report.rb2
-rw-r--r--lib/redmine/helpers/url.rb2
-rw-r--r--lib/redmine/hook.rb2
-rw-r--r--lib/redmine/hook/listener.rb2
-rw-r--r--lib/redmine/hook/view_listener.rb2
-rw-r--r--lib/redmine/i18n.rb2
-rw-r--r--lib/redmine/imap.rb2
-rw-r--r--lib/redmine/menu_manager.rb2
-rw-r--r--lib/redmine/mime_type.rb2
-rw-r--r--lib/redmine/my_page.rb2
-rw-r--r--lib/redmine/nested_set/issue_nested_set.rb2
-rw-r--r--lib/redmine/nested_set/project_nested_set.rb2
-rw-r--r--lib/redmine/nested_set/traversing.rb2
-rw-r--r--lib/redmine/pagination.rb2
-rw-r--r--lib/redmine/platform.rb2
-rw-r--r--lib/redmine/plugin.rb2
-rw-r--r--lib/redmine/pop3.rb2
-rw-r--r--lib/redmine/project_jump_box.rb2
-rw-r--r--lib/redmine/safe_attributes.rb2
-rw-r--r--lib/redmine/scm/adapters.rb2
-rw-r--r--lib/redmine/scm/adapters/abstract_adapter.rb2
-rw-r--r--lib/redmine/scm/adapters/bazaar_adapter.rb2
-rw-r--r--lib/redmine/scm/adapters/command_failed.rb2
-rw-r--r--lib/redmine/scm/adapters/cvs_adapter.rb2
-rw-r--r--lib/redmine/scm/adapters/filesystem_adapter.rb2
-rw-r--r--lib/redmine/scm/adapters/git_adapter.rb2
-rw-r--r--lib/redmine/scm/adapters/mercurial_adapter.rb2
-rw-r--r--lib/redmine/scm/adapters/subversion_adapter.rb2
-rw-r--r--lib/redmine/search.rb2
-rw-r--r--lib/redmine/sort_criteria.rb2
-rw-r--r--lib/redmine/subclass_factory.rb2
-rw-r--r--lib/redmine/syntax_highlighting.rb2
-rw-r--r--lib/redmine/themes.rb2
-rw-r--r--lib/redmine/thumbnail.rb2
-rw-r--r--lib/redmine/unified_diff.rb2
-rw-r--r--lib/redmine/utils.rb2
-rw-r--r--lib/redmine/views/api_template_handler.rb2
-rw-r--r--lib/redmine/views/builders.rb2
-rw-r--r--lib/redmine/views/builders/json.rb2
-rw-r--r--lib/redmine/views/builders/structure.rb2
-rw-r--r--lib/redmine/views/builders/xml.rb2
-rw-r--r--lib/redmine/views/labelled_form_builder.rb2
-rw-r--r--lib/redmine/views/other_formats_builder.rb2
-rw-r--r--lib/redmine/wiki_formatting.rb2
-rw-r--r--lib/redmine/wiki_formatting/html_parser.rb2
-rw-r--r--lib/redmine/wiki_formatting/macros.rb2
-rw-r--r--lib/redmine/wiki_formatting/markdown/formatter.rb2
-rw-r--r--lib/redmine/wiki_formatting/markdown/helper.rb2
-rw-r--r--lib/redmine/wiki_formatting/markdown/html_parser.rb2
-rw-r--r--lib/redmine/wiki_formatting/textile/formatter.rb2
-rw-r--r--lib/redmine/wiki_formatting/textile/helper.rb2
-rw-r--r--lib/redmine/wiki_formatting/textile/html_parser.rb2
72 files changed, 72 insertions, 72 deletions
diff --git a/lib/redmine/access_control.rb b/lib/redmine/access_control.rb
index a707c56b3..727e60c27 100644
--- a/lib/redmine/access_control.rb
+++ b/lib/redmine/access_control.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/access_keys.rb b/lib/redmine/access_keys.rb
index bbc4c1864..4db9a552b 100644
--- a/lib/redmine/access_keys.rb
+++ b/lib/redmine/access_keys.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/activity.rb b/lib/redmine/activity.rb
index 2552ea05e..a76d5f19c 100644
--- a/lib/redmine/activity.rb
+++ b/lib/redmine/activity.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/activity/fetcher.rb b/lib/redmine/activity/fetcher.rb
index 3b58a2d6b..817134960 100644
--- a/lib/redmine/activity/fetcher.rb
+++ b/lib/redmine/activity/fetcher.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/acts/positioned.rb b/lib/redmine/acts/positioned.rb
index f8134c6de..8fca4d942 100644
--- a/lib/redmine/acts/positioned.rb
+++ b/lib/redmine/acts/positioned.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/ciphering.rb b/lib/redmine/ciphering.rb
index eea752159..d5ceb0c6c 100644
--- a/lib/redmine/ciphering.rb
+++ b/lib/redmine/ciphering.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/configuration.rb b/lib/redmine/configuration.rb
index 1dfe8ddfc..5b4f8878b 100644
--- a/lib/redmine/configuration.rb
+++ b/lib/redmine/configuration.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/core_ext/active_record.rb b/lib/redmine/core_ext/active_record.rb
index eac2b6365..f51fb661d 100644
--- a/lib/redmine/core_ext/active_record.rb
+++ b/lib/redmine/core_ext/active_record.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/core_ext/string/conversions.rb b/lib/redmine/core_ext/string/conversions.rb
index 9ddc40e12..a6ff884ec 100644
--- a/lib/redmine/core_ext/string/conversions.rb
+++ b/lib/redmine/core_ext/string/conversions.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/core_ext/string/inflections.rb b/lib/redmine/core_ext/string/inflections.rb
index b07b24d81..be02f84c6 100644
--- a/lib/redmine/core_ext/string/inflections.rb
+++ b/lib/redmine/core_ext/string/inflections.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/database.rb b/lib/redmine/database.rb
index 0f0876157..26be1095f 100644
--- a/lib/redmine/database.rb
+++ b/lib/redmine/database.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/default_data/loader.rb b/lib/redmine/default_data/loader.rb
index cccc807fe..901c7d9c2 100644
--- a/lib/redmine/default_data/loader.rb
+++ b/lib/redmine/default_data/loader.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/export/csv.rb b/lib/redmine/export/csv.rb
index be6bb4b81..d3c3b3276 100644
--- a/lib/redmine/export/csv.rb
+++ b/lib/redmine/export/csv.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb
index 221703f68..2181cf85a 100644
--- a/lib/redmine/export/pdf.rb
+++ b/lib/redmine/export/pdf.rb
@@ -2,7 +2,7 @@
#
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/export/pdf/issues_pdf_helper.rb b/lib/redmine/export/pdf/issues_pdf_helper.rb
index 652622755..2f73e52a4 100644
--- a/lib/redmine/export/pdf/issues_pdf_helper.rb
+++ b/lib/redmine/export/pdf/issues_pdf_helper.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/export/pdf/wiki_pdf_helper.rb b/lib/redmine/export/pdf/wiki_pdf_helper.rb
index f1a121587..e2f408fc4 100644
--- a/lib/redmine/export/pdf/wiki_pdf_helper.rb
+++ b/lib/redmine/export/pdf/wiki_pdf_helper.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/field_format.rb b/lib/redmine/field_format.rb
index 1df164e0a..bcf100e3b 100644
--- a/lib/redmine/field_format.rb
+++ b/lib/redmine/field_format.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/helpers/calendar.rb b/lib/redmine/helpers/calendar.rb
index 097cd11ce..45329d7dc 100644
--- a/lib/redmine/helpers/calendar.rb
+++ b/lib/redmine/helpers/calendar.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/helpers/diff.rb b/lib/redmine/helpers/diff.rb
index 58bf29e56..f4f8ab1fc 100644
--- a/lib/redmine/helpers/diff.rb
+++ b/lib/redmine/helpers/diff.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb
index ad4b3c04f..285eb66a0 100644
--- a/lib/redmine/helpers/gantt.rb
+++ b/lib/redmine/helpers/gantt.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/helpers/time_report.rb b/lib/redmine/helpers/time_report.rb
index eb6abed04..75059d755 100644
--- a/lib/redmine/helpers/time_report.rb
+++ b/lib/redmine/helpers/time_report.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/helpers/url.rb b/lib/redmine/helpers/url.rb
index f5b44555f..5f771c660 100644
--- a/lib/redmine/helpers/url.rb
+++ b/lib/redmine/helpers/url.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/hook.rb b/lib/redmine/hook.rb
index 8d10ec2c7..46b9d4ea5 100644
--- a/lib/redmine/hook.rb
+++ b/lib/redmine/hook.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/hook/listener.rb b/lib/redmine/hook/listener.rb
index a291edd61..3ad47844f 100644
--- a/lib/redmine/hook/listener.rb
+++ b/lib/redmine/hook/listener.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/hook/view_listener.rb b/lib/redmine/hook/view_listener.rb
index 411658dd7..86fb421e2 100644
--- a/lib/redmine/hook/view_listener.rb
+++ b/lib/redmine/hook/view_listener.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/i18n.rb b/lib/redmine/i18n.rb
index c039fe3ec..3dd010888 100644
--- a/lib/redmine/i18n.rb
+++ b/lib/redmine/i18n.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/imap.rb b/lib/redmine/imap.rb
index ab0fce21e..1810cf63e 100644
--- a/lib/redmine/imap.rb
+++ b/lib/redmine/imap.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: false
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/menu_manager.rb b/lib/redmine/menu_manager.rb
index bfd4eacf7..3b8752a85 100644
--- a/lib/redmine/menu_manager.rb
+++ b/lib/redmine/menu_manager.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/mime_type.rb b/lib/redmine/mime_type.rb
index 23bd3df1d..d72869a37 100644
--- a/lib/redmine/mime_type.rb
+++ b/lib/redmine/mime_type.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/my_page.rb b/lib/redmine/my_page.rb
index ac946d9d0..f73ef83e3 100644
--- a/lib/redmine/my_page.rb
+++ b/lib/redmine/my_page.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/nested_set/issue_nested_set.rb b/lib/redmine/nested_set/issue_nested_set.rb
index 1f62bc072..ec9db78a4 100644
--- a/lib/redmine/nested_set/issue_nested_set.rb
+++ b/lib/redmine/nested_set/issue_nested_set.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/nested_set/project_nested_set.rb b/lib/redmine/nested_set/project_nested_set.rb
index 13f04a4bf..1d22e11fb 100644
--- a/lib/redmine/nested_set/project_nested_set.rb
+++ b/lib/redmine/nested_set/project_nested_set.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/nested_set/traversing.rb b/lib/redmine/nested_set/traversing.rb
index 1be46a998..6ad631031 100644
--- a/lib/redmine/nested_set/traversing.rb
+++ b/lib/redmine/nested_set/traversing.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/pagination.rb b/lib/redmine/pagination.rb
index ea96ed9e4..0b7b1d1fb 100644
--- a/lib/redmine/pagination.rb
+++ b/lib/redmine/pagination.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/platform.rb b/lib/redmine/platform.rb
index 6275d3016..9fcc5f9c6 100644
--- a/lib/redmine/platform.rb
+++ b/lib/redmine/platform.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/plugin.rb b/lib/redmine/plugin.rb
index a96e071b4..e9bc6eb39 100644
--- a/lib/redmine/plugin.rb
+++ b/lib/redmine/plugin.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/pop3.rb b/lib/redmine/pop3.rb
index fcaa7f735..9d0c049d2 100644
--- a/lib/redmine/pop3.rb
+++ b/lib/redmine/pop3.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: false
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/project_jump_box.rb b/lib/redmine/project_jump_box.rb
index d3116a3ff..f37d78ac9 100644
--- a/lib/redmine/project_jump_box.rb
+++ b/lib/redmine/project_jump_box.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/safe_attributes.rb b/lib/redmine/safe_attributes.rb
index a08e63f7e..c2f8ca84f 100644
--- a/lib/redmine/safe_attributes.rb
+++ b/lib/redmine/safe_attributes.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/scm/adapters.rb b/lib/redmine/scm/adapters.rb
index 16f1baa8a..5cb4e3329 100644
--- a/lib/redmine/scm/adapters.rb
+++ b/lib/redmine/scm/adapters.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/scm/adapters/abstract_adapter.rb b/lib/redmine/scm/adapters/abstract_adapter.rb
index 83ac5ab49..b1e64edd8 100644
--- a/lib/redmine/scm/adapters/abstract_adapter.rb
+++ b/lib/redmine/scm/adapters/abstract_adapter.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/scm/adapters/bazaar_adapter.rb b/lib/redmine/scm/adapters/bazaar_adapter.rb
index 22c35e0cd..016018bf6 100644
--- a/lib/redmine/scm/adapters/bazaar_adapter.rb
+++ b/lib/redmine/scm/adapters/bazaar_adapter.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/scm/adapters/command_failed.rb b/lib/redmine/scm/adapters/command_failed.rb
index 1aa5a4d0b..801926939 100644
--- a/lib/redmine/scm/adapters/command_failed.rb
+++ b/lib/redmine/scm/adapters/command_failed.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/scm/adapters/cvs_adapter.rb b/lib/redmine/scm/adapters/cvs_adapter.rb
index e0a8cd4d8..ae45c43fb 100644
--- a/lib/redmine/scm/adapters/cvs_adapter.rb
+++ b/lib/redmine/scm/adapters/cvs_adapter.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# redMine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/scm/adapters/filesystem_adapter.rb b/lib/redmine/scm/adapters/filesystem_adapter.rb
index 9b6c6f14e..9320a46f7 100644
--- a/lib/redmine/scm/adapters/filesystem_adapter.rb
+++ b/lib/redmine/scm/adapters/filesystem_adapter.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# FileSystem adapter
# File written by Paul Rivier, at Demotera.
diff --git a/lib/redmine/scm/adapters/git_adapter.rb b/lib/redmine/scm/adapters/git_adapter.rb
index eba781013..aad42f55b 100644
--- a/lib/redmine/scm/adapters/git_adapter.rb
+++ b/lib/redmine/scm/adapters/git_adapter.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/scm/adapters/mercurial_adapter.rb b/lib/redmine/scm/adapters/mercurial_adapter.rb
index fd3c80de3..f58021dde 100644
--- a/lib/redmine/scm/adapters/mercurial_adapter.rb
+++ b/lib/redmine/scm/adapters/mercurial_adapter.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/scm/adapters/subversion_adapter.rb b/lib/redmine/scm/adapters/subversion_adapter.rb
index 8748641ce..7676705ea 100644
--- a/lib/redmine/scm/adapters/subversion_adapter.rb
+++ b/lib/redmine/scm/adapters/subversion_adapter.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/search.rb b/lib/redmine/search.rb
index 17968e959..2d51717e4 100644
--- a/lib/redmine/search.rb
+++ b/lib/redmine/search.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/sort_criteria.rb b/lib/redmine/sort_criteria.rb
index 448c13d41..efe40514b 100644
--- a/lib/redmine/sort_criteria.rb
+++ b/lib/redmine/sort_criteria.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/subclass_factory.rb b/lib/redmine/subclass_factory.rb
index c4176b69e..ca0139884 100644
--- a/lib/redmine/subclass_factory.rb
+++ b/lib/redmine/subclass_factory.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/syntax_highlighting.rb b/lib/redmine/syntax_highlighting.rb
index bf1c4b1b3..11a4e3bdd 100644
--- a/lib/redmine/syntax_highlighting.rb
+++ b/lib/redmine/syntax_highlighting.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/themes.rb b/lib/redmine/themes.rb
index 77fb3c0ee..b9df03553 100644
--- a/lib/redmine/themes.rb
+++ b/lib/redmine/themes.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/thumbnail.rb b/lib/redmine/thumbnail.rb
index 79f784393..e9fe55188 100644
--- a/lib/redmine/thumbnail.rb
+++ b/lib/redmine/thumbnail.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/unified_diff.rb b/lib/redmine/unified_diff.rb
index 64e3f13e8..67292cf0f 100644
--- a/lib/redmine/unified_diff.rb
+++ b/lib/redmine/unified_diff.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/utils.rb b/lib/redmine/utils.rb
index 4297755b8..e11be1a94 100644
--- a/lib/redmine/utils.rb
+++ b/lib/redmine/utils.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/views/api_template_handler.rb b/lib/redmine/views/api_template_handler.rb
index 04727086f..8164266ed 100644
--- a/lib/redmine/views/api_template_handler.rb
+++ b/lib/redmine/views/api_template_handler.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/views/builders.rb b/lib/redmine/views/builders.rb
index 2fa2f1af5..653c1bd6b 100644
--- a/lib/redmine/views/builders.rb
+++ b/lib/redmine/views/builders.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/views/builders/json.rb b/lib/redmine/views/builders/json.rb
index 45a6a20fc..905b0f3a5 100644
--- a/lib/redmine/views/builders/json.rb
+++ b/lib/redmine/views/builders/json.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/views/builders/structure.rb b/lib/redmine/views/builders/structure.rb
index 813ba266a..acbf187e3 100644
--- a/lib/redmine/views/builders/structure.rb
+++ b/lib/redmine/views/builders/structure.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/views/builders/xml.rb b/lib/redmine/views/builders/xml.rb
index eadf62c6a..264bd08cf 100644
--- a/lib/redmine/views/builders/xml.rb
+++ b/lib/redmine/views/builders/xml.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/views/labelled_form_builder.rb b/lib/redmine/views/labelled_form_builder.rb
index 7f39d20ca..879dbc76b 100644
--- a/lib/redmine/views/labelled_form_builder.rb
+++ b/lib/redmine/views/labelled_form_builder.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/views/other_formats_builder.rb b/lib/redmine/views/other_formats_builder.rb
index d64004bb6..6eb1d312f 100644
--- a/lib/redmine/views/other_formats_builder.rb
+++ b/lib/redmine/views/other_formats_builder.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/wiki_formatting.rb b/lib/redmine/wiki_formatting.rb
index 64f2fc544..fb7799689 100644
--- a/lib/redmine/wiki_formatting.rb
+++ b/lib/redmine/wiki_formatting.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/wiki_formatting/html_parser.rb b/lib/redmine/wiki_formatting/html_parser.rb
index f6f9639e0..3ae4f9e89 100644
--- a/lib/redmine/wiki_formatting/html_parser.rb
+++ b/lib/redmine/wiki_formatting/html_parser.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/wiki_formatting/macros.rb b/lib/redmine/wiki_formatting/macros.rb
index 0e1e4234c..c34e404e2 100644
--- a/lib/redmine/wiki_formatting/macros.rb
+++ b/lib/redmine/wiki_formatting/macros.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/wiki_formatting/markdown/formatter.rb b/lib/redmine/wiki_formatting/markdown/formatter.rb
index f4dd56452..4782afc13 100644
--- a/lib/redmine/wiki_formatting/markdown/formatter.rb
+++ b/lib/redmine/wiki_formatting/markdown/formatter.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/wiki_formatting/markdown/helper.rb b/lib/redmine/wiki_formatting/markdown/helper.rb
index aafa90e3c..55424d644 100644
--- a/lib/redmine/wiki_formatting/markdown/helper.rb
+++ b/lib/redmine/wiki_formatting/markdown/helper.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/wiki_formatting/markdown/html_parser.rb b/lib/redmine/wiki_formatting/markdown/html_parser.rb
index 636a3443e..ae411342f 100644
--- a/lib/redmine/wiki_formatting/markdown/html_parser.rb
+++ b/lib/redmine/wiki_formatting/markdown/html_parser.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/wiki_formatting/textile/formatter.rb b/lib/redmine/wiki_formatting/textile/formatter.rb
index 2858e9805..71f7b331d 100644
--- a/lib/redmine/wiki_formatting/textile/formatter.rb
+++ b/lib/redmine/wiki_formatting/textile/formatter.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/wiki_formatting/textile/helper.rb b/lib/redmine/wiki_formatting/textile/helper.rb
index 9b45fd388..6e6009f09 100644
--- a/lib/redmine/wiki_formatting/textile/helper.rb
+++ b/lib/redmine/wiki_formatting/textile/helper.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/lib/redmine/wiki_formatting/textile/html_parser.rb b/lib/redmine/wiki_formatting/textile/html_parser.rb
index 27dc5f975..9d2f39e1c 100644
--- a/lib/redmine/wiki_formatting/textile/html_parser.rb
+++ b/lib/redmine/wiki_formatting/textile/html_parser.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
# Redmine - project management software
-# Copyright (C) 2006-2019 Jean-Philippe Lang
+# Copyright (C) 2006-2020 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License