summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2016-02-12 00:44:30 +0100
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2016-02-12 00:44:30 +0100
commitd6e5651c340b55606d1f6d346e36ad34935335b6 (patch)
tree9f4acf84577cea5927bf0ead6da191ce318f308e
parentc321d091d9754bc0d3692864f6f1e594136ef429 (diff)
downloadsemantic-version-d6e5651c340b55606d1f6d346e36ad34935335b6.tar.gz
Remove Copyright years (Closes #28)
It seems that stating the copyright years is useless after all :)
-rw-r--r--LICENSE2
-rw-r--r--README.rst2
-rw-r--r--semantic_version/__init__.py2
-rw-r--r--semantic_version/base.py2
-rw-r--r--semantic_version/compat.py2
-rw-r--r--semantic_version/django_fields.py2
-rwxr-xr-xsetup.py2
-rw-r--r--tests/compat.py2
-rw-r--r--tests/django_test_app/__init__.py2
-rw-r--r--tests/django_test_app/models.py2
-rwxr-xr-xtests/test_base.py2
-rw-r--r--tests/test_django.py2
-rwxr-xr-xtests/test_match.py2
-rwxr-xr-xtests/test_parsing.py2
-rw-r--r--tests/test_spec.py2
15 files changed, 15 insertions, 15 deletions
diff --git a/LICENSE b/LICENSE
index 726ce95..66aba18 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2012-2014 The python-semanticversion project
+Copyright (c) The python-semanticversion project
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/README.rst b/README.rst
index 270076a..7389009 100644
--- a/README.rst
+++ b/README.rst
@@ -293,7 +293,7 @@ When submitting patches or pull requests, you should respect the following rules
.. note:: All files should contain the following header::
# -*- encoding: utf-8 -*-
- # Copyright (c) 2012-2014 The python-semanticversion project
+ # Copyright (c) The python-semanticversion project
Contents
diff --git a/semantic_version/__init__.py b/semantic_version/__init__.py
index 07de3a5..94e0a8d 100644
--- a/semantic_version/__init__.py
+++ b/semantic_version/__init__.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2014 The python-semanticversion project
+# Copyright (c) The python-semanticversion project
# This code is distributed under the two-clause BSD License.
diff --git a/semantic_version/base.py b/semantic_version/base.py
index 619a113..c81a3de 100644
--- a/semantic_version/base.py
+++ b/semantic_version/base.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2014 The python-semanticversion project
+# Copyright (c) The python-semanticversion project
# This code is distributed under the two-clause BSD License.
from __future__ import unicode_literals
diff --git a/semantic_version/compat.py b/semantic_version/compat.py
index 4dd60fe..b17468f 100644
--- a/semantic_version/compat.py
+++ b/semantic_version/compat.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2014 The python-semanticversion project
+# Copyright (c) The python-semanticversion project
# This code is distributed under the two-clause BSD License.
diff --git a/semantic_version/django_fields.py b/semantic_version/django_fields.py
index 740c208..eba8658 100644
--- a/semantic_version/django_fields.py
+++ b/semantic_version/django_fields.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2014 The python-semanticversion project
+# Copyright (c) The python-semanticversion project
# This code is distributed under the two-clause BSD License.
from __future__ import unicode_literals
diff --git a/setup.py b/setup.py
index b8e164a..6baac7d 100755
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2014 The python-semanticversion project
+# Copyright (c) The python-semanticversion project
import codecs
diff --git a/tests/compat.py b/tests/compat.py
index f3617ee..f3ef508 100644
--- a/tests/compat.py
+++ b/tests/compat.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2014 The python-semanticversion project
+# Copyright (c) The python-semanticversion project
# This code is distributed under the two-clause BSD License.
import sys
diff --git a/tests/django_test_app/__init__.py b/tests/django_test_app/__init__.py
index 72ebf68..0f94470 100644
--- a/tests/django_test_app/__init__.py
+++ b/tests/django_test_app/__init__.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2014 The python-semanticversion project
+# Copyright (c) The python-semanticversion project
# This code is distributed under the two-clause BSD License.
try: # pragma: no cover
diff --git a/tests/django_test_app/models.py b/tests/django_test_app/models.py
index 06d0096..5313e89 100644
--- a/tests/django_test_app/models.py
+++ b/tests/django_test_app/models.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2014 The python-semanticversion project
+# Copyright (c) The python-semanticversion project
try:
from django.db import models
diff --git a/tests/test_base.py b/tests/test_base.py
index 6707cef..6b64073 100755
--- a/tests/test_base.py
+++ b/tests/test_base.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2014 The python-semanticversion project
+# Copyright (c) The python-semanticversion project
# This code is distributed under the two-clause BSD License.
"""Test the various functions from 'base'."""
diff --git a/tests/test_django.py b/tests/test_django.py
index 959b19c..c93dde7 100644
--- a/tests/test_django.py
+++ b/tests/test_django.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2014 The python-semanticversion project
+# Copyright (c) The python-semanticversion project
# This code is distributed under the two-clause BSD License.
from __future__ import unicode_literals
diff --git a/tests/test_match.py b/tests/test_match.py
index 6926e0a..c191168 100755
--- a/tests/test_match.py
+++ b/tests/test_match.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2014 The python-semanticversion project
+# Copyright (c) The python-semanticversion project
# This code is distributed under the two-clause BSD License.
import unittest
diff --git a/tests/test_parsing.py b/tests/test_parsing.py
index c7651d2..8fd22da 100755
--- a/tests/test_parsing.py
+++ b/tests/test_parsing.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2014 The python-semanticversion project
+# Copyright (c) The python-semanticversion project
# This code is distributed under the two-clause BSD License.
import itertools
diff --git a/tests/test_spec.py b/tests/test_spec.py
index a13cb0b..43c9d6a 100644
--- a/tests/test_spec.py
+++ b/tests/test_spec.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2014 The python-semanticversion project
+# Copyright (c) The python-semanticversion project
# This code is distributed under the two-clause BSD License.
"""Test conformance to the specs."""