From: Oleg Broytman Date: Wed, 18 Dec 2013 07:10:36 +0000 (+0400) Subject: Version 2.1.5 X-Git-Tag: v2.3.2~55 X-Git-Url: https://git.phdru.name/?p=mimedecode.git;a=commitdiff_plain;h=8a69ae149fc97026263ffca2639d2614d37b500d Version 2.1.5 --- diff --git a/Makefile b/Makefile index 21100c9..65fab68 100644 --- a/Makefile +++ b/Makefile @@ -1,20 +1,22 @@ -VERSION=$(shell python -c "from mimedecode import __version__; print __version__") +VERSION=$(shell python -c "from __version__ import __version__; print __version__") .PHONY: all all: docs sdist -DISTFILES = mimedecode.py \ -setup.py \ +DISTFILES = \ +ANNOUNCE \ +MANIFEST.in \ Makefile \ -Makefile.sgmlt \ Makefile.4xslt \ -MANIFEST.in \ -ANNOUNCE \ +Makefile.sgmlt \ +__version__.py \ mimedecode.docbook \ mimedecode.html \ mimedecode.man \ -mimedecode.txt +mimedecode.py \ +mimedecode.txt \ +setup.py .PHONY: sdist sdist: dist/mimedecode-$(VERSION).tar.gz diff --git a/__version__.py b/__version__.py index 0677d7e..b26031c 100644 --- a/__version__.py +++ b/__version__.py @@ -1,4 +1,4 @@ -__version__ = "2.1.4" +__version__ = "2.1.5" __author__ = "Oleg Broytman " __copyright__ = "Copyright (C) 2001-2013 PhiloSoft Design" __license__ = "GNU GPL"