From dbba0d71280f4ff436a0790befbda803e5dfbb01 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Sun, 15 Mar 2009 07:56:39 +0000 Subject: [PATCH] update version and copyright * update copyright years to include 2009 (fixes #22) * checkin using LC_ALL=C and LANG=C (fixes #21) * add a setup.cfg to make dev builds easily available --- ChangeLog | 9 ++++++++- Makefile | 18 +++++++++--------- README | 4 ++-- btn4ws.py | 6 +++--- setup.cfg | 3 +++ setup.py | 4 ++-- 6 files changed, 27 insertions(+), 17 deletions(-) create mode 100644 setup.cfg diff --git a/ChangeLog b/ChangeLog index 633da22..9cc4267 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,14 @@ +2009-03-15 Jan Dittberner + * setup.py: set version for release 0.8.0.1 + * btn4ws.py: update copyright years, checking using LC_ALL=C, + LANG=C to avoid umlauts + +2009-03-13 Jan Dittberner + * release as 0.8.0 + 2008-01-05 Jan Dittberner * setup.py: set version for release 0.7.0 - set trunk version to 0.8.0a1 * btn4ws.py: switch to non gimpfu gimpplugin, GtkAssistant GUI, get interactive functionallity completed, store settings in diff --git a/Makefile b/Makefile index d8e433e..e0ed8b0 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,22 @@ # Makefile for btn4ws.py # -# copyright (c) 1999-2006 Jan Dittberner +# copyright (c) 1999-2009 Jan Dittberner # # This file is part of btn4ws. # -# btn4ws is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# btn4ws is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # -# btn4ws is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# btn4ws is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with btn4ws; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# along with btn4ws; if not, write to the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # version: $Id$ # diff --git a/README b/README index adc2ae3..009f951 100644 --- a/README +++ b/README @@ -13,7 +13,7 @@ http://www.dittberner.info/projects/btn4ws/newticket MAINTAINER: Jan Dittberner -Copyright (C) 2000-2007 Jan Dittberner +Copyright (C) 2000-2009 Jan Dittberner 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 @@ -27,4 +27,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file +Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. diff --git a/btn4ws.py b/btn4ws.py index ff36482..9de51b4 100755 --- a/btn4ws.py +++ b/btn4ws.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This is the main file of btn4ws. # -# Copyright (c) 1999-2008 Jan Dittberner +# Copyright (c) 1999-2009 Jan Dittberner # # This file is part of btn4ws. # @@ -27,7 +27,7 @@ Gimp script to generate button images for websites. This script is a port of the older gimp-perl version to python. -(c) 2007, 2008 Jan Dittberner +(c) 2007, 2008, 2009 Jan Dittberner """ import os, urllib, logging, sys, pickle import gimp, gimpplugin, gimpui, gimpcolor @@ -38,7 +38,7 @@ from gimpenums import * from gimpshelf import shelf pdb = gimp.pdb -btn4ws_version = "0.8.0" +btn4ws_version = "0.8.0.1" logging.basicConfig(level=logging.WARN, format='%(asctime)s %(levelname)s %(message)s', diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..01bb954 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[egg_info] +tag_build = dev +tag_svn_revision = true diff --git a/setup.py b/setup.py index a220b52..ad97171 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This is the distutils setup file for btn4ws. # -# Copyright (c) 2007 Jan Dittberner +# Copyright (c) 2007-2009 Jan Dittberner # # This file is part of btn4ws. # @@ -26,7 +26,7 @@ from distutils.core import setup setup(name='btn4ws', - version='0.8.0a1', + version='0.8.0.1', description='Buttons for websites GIMP plugin', author='Jan Dittberner', author_email='jan@dittberner.info',