From 331a71f8986b8fb21dfd2413e867b13e1186244e Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Sun, 9 Nov 2008 14:20:05 -0600 Subject: Version 0.2.2 --- ChangeLog | 4 ++++ MANIFEST.in | 2 +- fedora-business-cards.spec | 7 +++++-- pavement.py | 4 ++-- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 97def64..7630dc0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +* Sun Oct 09 2008 Ian Weller 0.2.2 +Modularize some things, fix the colors in the back templates, prepare for +visual branch merge whenever that gets done; version 0.2.2. + * Thu Oct 20 2008 Ian Weller 0.2.1 Add overnightprints templates (same as northamerica with a 1/16" bleed); cleaned up python a little bit; version 0.2.1. diff --git a/MANIFEST.in b/MANIFEST.in index 40a00b3..f48fccf 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -include pavement.py config.ini templates/* COPYING INSTALL ChangeLog fedora-business-cards +include pavement.py config.ini templates/* ui/* COPYING INSTALL ChangeLog fedora-business-cards diff --git a/fedora-business-cards.spec b/fedora-business-cards.spec index 9c87bc2..aa20ec3 100644 --- a/fedora-business-cards.spec +++ b/fedora-business-cards.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: fedora-business-cards -Version: 0.2.1 +Version: 0.2.2 Release: 1%{?dist} Summary: A tool for rendering Fedora contributor business cards @@ -32,7 +32,7 @@ paver build %install rm -rf %{buildroot} paver install --skip-build --root %{buildroot} -paver install_templates --root %{buildroot} +paver install_data --root %{buildroot} paver install_executable --root %{buildroot} @@ -49,6 +49,9 @@ rm -rf %{buildroot} %changelog +* Sun Nov 09 2008 Ian Weller 0.2.2-1 +- Fix coloration in back templates + * Thu Oct 30 2008 Ian Weller 0.2.1-1 - Upstream update diff --git a/pavement.py b/pavement.py index a790396..c69e075 100644 --- a/pavement.py +++ b/pavement.py @@ -6,9 +6,9 @@ import paver.path options( setup=Bunch( name="fedora-business-cards", - version="0.2.1", + version="0.2.2", description="A generator for Fedora contributor business cards", - packages=["fedora_business_cards"], + packages=["fedora_business_cards", "fedora_business_cards.frontend"], author="Ian Weller", author_email="ianweller@gmail.com", license="GPLv2+", -- cgit