summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2014-06-03 10:37:57 +0100
committerLars Wirzenius <liw@liw.fi>2014-06-03 10:37:57 +0100
commit680439fccef2e4f7e792d6cbaa4f862933403dba (patch)
tree37c57981dc486b4fb30664883bcbad1eed01a237
parentc390eeae90f68def13e3a718f0fa013f36c719a7 (diff)
downloadcopyright-statement-lint-680439fccef2e4f7e792d6cbaa4f862933403dba.tar.gz
Prepare to release version 0.1
-rw-r--r--NEWS5
-rw-r--r--README2
-rwxr-xr-xcopyright-statement-lint2
-rw-r--r--debian/changelog6
-rw-r--r--setup.py2
5 files changed, 13 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index b002982..e20821a 100644
--- a/NEWS
+++ b/NEWS
@@ -4,10 +4,13 @@ copyright-statement-lint NEWS
This file summarizes changes between releases of
copyright-statement-lint.
-Version 0.1, released UNRELEASED
+Version 0.1, released 2014-06-03
--------------------------------
* A manual page has been added.
+* The pattern for finding copyright statements has been improved:
+ "(C)" is now allowed, and years may have ranges (using a dash).
+* The test suite has been improved.
Version 0.0, released 2014-03-18
--------------------------------
diff --git a/README b/README
index a37bab7..ae3843f 100644
--- a/README
+++ b/README
@@ -9,7 +9,7 @@ a year that matches the date of the latest git commit.
Legalese
========
-Copyright 2013 Lars Wirzenius
+Copyright 2013-2014 Lars Wirzenius
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/copyright-statement-lint b/copyright-statement-lint
index 5ca8033..236ece5 100755
--- a/copyright-statement-lint
+++ b/copyright-statement-lint
@@ -17,7 +17,7 @@
# =*= License: GPL-3+ =*=
-__version__ = '0.0'
+__version__ = '0.1'
import cliapp
diff --git a/debian/changelog b/debian/changelog
index afea7a6..c78bfe9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+copyright-statement-lint (0.1-1) unstable; urgency=low
+
+ * New upsream version.
+
+ -- Lars Wirzenius <liw@liw.fi> Tue, 03 Jun 2014 10:37:43 +0100
+
copyright-statement-lint (0.0-1) unstable; urgency=low
* Initial packaging. This is not intended to be uploaded to Debian, so
diff --git a/setup.py b/setup.py
index 8dc7f04..d66a3ee 100644
--- a/setup.py
+++ b/setup.py
@@ -35,7 +35,7 @@ class Build(build):
setup(name='copyright-statement-lint',
- version='0.0',
+ version='0.1',
description='check copyright statements in source files',
author='Lars Wirzenius',
author_email='liw@liw.fi',