summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoris Roovers <jroovers@cisco.com>2015-11-22 14:52:17 +0100
committerJoris Roovers <jroovers@cisco.com>2015-11-22 15:02:31 +0100
commit13716877d252a2dd02f1ccb3e204cc3ecacaae9a (patch)
treedde29e4b328b1e89f0934dae1a0da4c87519651c
parentb15445543394eff9e2386e958d2f5fc6135c3295 (diff)
0.6.0 releasev0.6.0
- Bumped version number to 0.6.0 - Removed unsupported python versions from setup.py - setup.cfg file to support universal python 2 and 3 wheels Full Release details in CHANGELOG.md. Fix: removed unsupported python versions from setup.py
-rw-r--r--CHANGELOG.md2
-rw-r--r--gitlint/__init__.py2
-rw-r--r--setup.cfg2
-rw-r--r--setup.py3
4 files changed, 4 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e8d57c7..e7bb64e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog #
-## v0.6.0dev (work in progress) ##
+## v0.6.0 (2015-11-22) ##
- Python 3 (3.3+) support!
- All documentation is now hosted on [http://jorisroovers.github.io/gitlint/]()
diff --git a/gitlint/__init__.py b/gitlint/__init__.py
index cc32139..906d362 100644
--- a/gitlint/__init__.py
+++ b/gitlint/__init__.py
@@ -1 +1 @@
-__version__ = "0.6.0dev"
+__version__ = "0.6.0"
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..7c2b287
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,2 @@
+[bdist_wheel]
+universal = 1 \ No newline at end of file
diff --git a/setup.py b/setup.py
index e5a7f36..6f513ef 100644
--- a/setup.py
+++ b/setup.py
@@ -46,9 +46,6 @@ setup(
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
- "Programming Language :: Python :: 3.0",
- "Programming Language :: Python :: 3.1",
- "Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",