diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-08-09 08:50:40 -0400 |
|---|---|---|
| committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-08-09 08:50:40 -0400 |
| commit | 508088dbdfe5ba7dac077c1b3b60964b4ee0af16 (patch) | |
| tree | 81325a65a1ccc7a5e09a6a0be831806151f4bf26 | |
| parent | 832f3ec312a04176676ea282b51a4e2284bf349b (diff) | |
| download | cmd2-git-508088dbdfe5ba7dac077c1b3b60964b4ee0af16.tar.gz | |
Renamed CHANGES.md to CHANGELOG.md
Just to make it that much more obvious what exactly it is ;-)
| -rw-r--r-- | CHANGELOG.md (renamed from CHANGES.md) | 3 | ||||
| -rw-r--r-- | MANIFEST.in | 2 | ||||
| -rw-r--r-- | fabfile.py | 6 |
3 files changed, 4 insertions, 7 deletions
diff --git a/CHANGES.md b/CHANGELOG.md index ed8a2641..1648b495 100644 --- a/CHANGES.md +++ b/CHANGELOG.md @@ -1,6 +1,3 @@ -rerNews -==== - 0.7.6 ----- diff --git a/MANIFEST.in b/MANIFEST.in index 373f7b7b..373701c7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ include LICENSE include README.md -include CHANGES.md +include CHANGELOG.md @@ -80,11 +80,11 @@ def release_check(): if 'a' in env.version: print("WARNING: alpha release %s" % env.version) - # hacky CHANGES.md check - with open("CHANGES.md") as f: + # hacky CHANGELOG.md check + with open("CHANGELOG.md") as f: raw_changes = f.read() assert "%s\n---" % env.version in raw_changes, \ - "The current version %s is not in CHANGES.md" % env.version + "The current version %s is not in CHANGELOG.md" % env.version if env.version in tags: raise Exception("Already released v. %r" % env.version) |
