From 0b8484c3e1bf94dda051cc29879d15ccaa65a1e3 Mon Sep 17 00:00:00 2001 From: Chong Guo Date: Sat, 8 Jun 2019 12:32:38 -0700 Subject: [PATCH] Fix(templates): change copyright year --- LICENSE | 2 +- assets/new/license/LICENSE.gotmpl | 2 +- assets/new/python/example.py.gotmpl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index 7c3565d..b7e495d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Chong Guo +Copyright (c) 2019 Chong Guo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/assets/new/license/LICENSE.gotmpl b/assets/new/license/LICENSE.gotmpl index 1fb5a35..2437aed 100644 --- a/assets/new/license/LICENSE.gotmpl +++ b/assets/new/license/LICENSE.gotmpl @@ -1,6 +1,6 @@ {{- if eq .license "MIT"}}MIT License -Copyright (c) 2018 {{ .author }} +Copyright (c) 2019 {{ .author }} Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/assets/new/python/example.py.gotmpl b/assets/new/python/example.py.gotmpl index b6b1551..b5dbe88 100644 --- a/assets/new/python/example.py.gotmpl +++ b/assets/new/python/example.py.gotmpl @@ -4,7 +4,7 @@ """Example project.""" __author__ = '{{ .author }} <{{ .email }}>' -__copyright__ = 'Copyright 2018, {{ .author }}' +__copyright__ = 'Copyright 2019, {{ .author }}' __license__ = '{{ .license }}' # import goes here...