From b005ea74fde43edd2ff769f52827155f6fbad4a7 Mon Sep 17 00:00:00 2001 From: Audrey Roy Date: Thu, 18 Jul 2013 15:01:19 +0200 Subject: [PATCH] Release 0.3 --- HISTORY.rst | 9 +++++++++ README.rst | 19 ++++++++++++++++++- complexity/__init__.py | 4 +++- 3 files changed, 30 insertions(+), 2 deletions(-) mode change 100644 => 100755 complexity/__init__.py diff --git a/HISTORY.rst b/HISTORY.rst index 32d8e6c..6cc8636 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,15 @@ History ------- +0.3 (2013-07-18) +++++++++++++++++++ + +* Graceful shutdown/restart of dev server. +* Required input and output dir arguments. +* Optional port argument. +* Improved server start/stop messages. +* Major internal refactor. + 0.2.1 (2013-07-15) ++++++++++++++++ diff --git a/README.rst b/README.rst index 0309552..bddf7e7 100644 --- a/README.rst +++ b/README.rst @@ -29,7 +29,24 @@ Features * Takes simple HTML templates as input. * Template inheritance, filters, etc. (Brought to you by Jinja2.) * Data from .json files turns into template context data. -* Can output to Amazon S3. Well, not yet, but that's half of the plan. + +Best Used With +-------------- + +Complexity is designed to be used with these packages: + +* `Simplicity`: Converts ReStructuredText into JSON, which Complexity can use + as input. +* `A Lot of Effort`: Deploys a static website (e.g. the output of Complexity) + to Amazon S3. +* `Cookiecutter`: Creates projects from project templates. + +Sure, they could have all been built into Complexity, but decoupling them +seemed like a nice thing to do. + +.. _`Simplicity`: https://github.com/pydanny/simplicity +.. _`A Lot if Effort`: https://github.com/audreyr/alotofeffort +.. _`Cookiecutter`: https://github.com/audreyr/cookiecutter Dependencies ------------ diff --git a/complexity/__init__.py b/complexity/__init__.py old mode 100644 new mode 100755 index fc79d63..3d855ce --- a/complexity/__init__.py +++ b/complexity/__init__.py @@ -1 +1,3 @@ -__version__ = '0.2.1' +#!/usr/bin/env python +# -*- coding: utf-8 -*- +__version__ = '0.3'