summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2014-03-08 21:14:24 +0100
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2014-03-08 21:14:24 +0100
commited74d6c409a4ea2a65dcd473563df06be727a9ef (patch)
treea72aa97940eecd77a3f67cddd913cf61f3e5ddb3
parenta9eea44319d11d51984759292c16bad2106975dd (diff)
downloadsemantic-version-ed74d6c409a4ea2a65dcd473563df06be727a9ef.tar.gz
Update copyright
-rw-r--r--CREDITS6
-rw-r--r--LICENSE2
-rw-r--r--docs/conf.py2
-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/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, 17 insertions, 17 deletions
diff --git a/CREDITS b/CREDITS
index ded3222..0eb13f0 100644
--- a/CREDITS
+++ b/CREDITS
@@ -5,7 +5,7 @@ Credits
Maintainers
-----------
-The ``python-semantic_version`` project is operated and maintained by:
+The ``python-semanticversion`` project is operated and maintained by:
* Raphaël Barrois <raphael.barrois+semver@polytechnique.org> (https://github.com/rbarrois)
@@ -31,12 +31,12 @@ add its name to the list in the :ref:`contributors` section, thereby "signing" t
following contributor license agreement:
They accept and agree to the following terms for their present end future contributions
-submitted to the ``python-semantic_version`` project:
+submitted to the ``python-semanticversion`` project:
* They represent that they are legally entitled to grant this license, and that their
contributions are their original creation
-* They grant the ``python-semantic_version`` project a perpetual, worldwide, non-exclusive,
+* They grant the ``python-semanticversion`` project a perpetual, worldwide, non-exclusive,
no-charge, royalty-free, irrevocable copyright license to reproduce,
prepare derivative works of, publicly display, sublicense and distribute their contributions
and such derivative works.
diff --git a/LICENSE b/LICENSE
index 504d59e..726ce95 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2012-2013, Raphaël Barrois
+Copyright (c) 2012-2014 The python-semanticversion project
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/docs/conf.py b/docs/conf.py
index b8272ea..beaf596 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -41,7 +41,7 @@ master_doc = 'index'
# General information about the project.
project = u'python-semanticversion'
-copyright = u'2012-2013, Raphaël Barrois'
+copyright = u'2012-2014, The python-semanticversion project'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
diff --git a/semantic_version/__init__.py b/semantic_version/__init__.py
index 0e55012..83bc367 100644
--- a/semantic_version/__init__.py
+++ b/semantic_version/__init__.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2013 Raphaël Barrois
+# Copyright (c) 2012-2014 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 e46857e..a8e39a4 100644
--- a/semantic_version/base.py
+++ b/semantic_version/base.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2013 Raphaël Barrois
+# Copyright (c) 2012-2014 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 51102fc..bea6f67 100644
--- a/semantic_version/compat.py
+++ b/semantic_version/compat.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2013 Raphaël Barrois
+# Copyright (c) 2012-2014 The python-semanticversion project
# This code is distributed under the two-clause BSD License.
import sys
diff --git a/semantic_version/django_fields.py b/semantic_version/django_fields.py
index 6a70129..a0c6979 100644
--- a/semantic_version/django_fields.py
+++ b/semantic_version/django_fields.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2013 Raphaël Barrois
+# Copyright (c) 2012-2014 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 8d2f9e6..d95f82c 100755
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2013 Raphaël Barrois
+# Copyright (c) 2012-2014 The python-semanticversion project
import os
import re
diff --git a/tests/compat.py b/tests/compat.py
index 90f1baa..f3617ee 100644
--- a/tests/compat.py
+++ b/tests/compat.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2013 Raphaël Barrois
+# Copyright (c) 2012-2014 The python-semanticversion project
# This code is distributed under the two-clause BSD License.
import sys
diff --git a/tests/django_test_app/models.py b/tests/django_test_app/models.py
index f938f7f..06d0096 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-2013 Raphaël Barrois
+# Copyright (c) 2012-2014 The python-semanticversion project
try:
from django.db import models
diff --git a/tests/test_base.py b/tests/test_base.py
index 0016776..f482140 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-2013 Raphaël Barrois
+# Copyright (c) 2012-2014 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 ffdfe58..0cb480b 100644
--- a/tests/test_django.py
+++ b/tests/test_django.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright (c) 2012-2013 Raphaël Barrois
+# Copyright (c) 2012-2014 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 6ec202d..fe75179 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-2013 Raphaël Barrois
+# Copyright (c) 2012-2014 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 585011d..5112ca5 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-2013 Raphaël Barrois
+# Copyright (c) 2012-2014 The python-semanticversion project
# This code is distributed under the two-clause BSD License.
import unittest
diff --git a/tests/test_spec.py b/tests/test_spec.py
index decc2c4..7a645f9 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-2013 Raphaël Barrois
+# Copyright (c) 2012-2014 The python-semanticversion project
# This code is distributed under the two-clause BSD License.
"""Test conformance to the specs."""