From 29fa99bd7eabcde1fbbbe584c934b6247b2e5c06 Mon Sep 17 00:00:00 2001 From: Nick Sutterer Date: Fri, 25 Mar 2011 11:00:27 +0100 Subject: [PATCH] version bump to 1.1.1. --- CHANGES.textile | 7 +++++++ lib/apotomo/version.rb | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.textile b/CHANGES.textile index 6b15c85..c793c71 100644 --- a/CHANGES.textile +++ b/CHANGES.textile @@ -1,8 +1,15 @@ h2. 1.1.1 +h3. Additions + * You can now attach event handlers to other widgets simply by using the @:passing@ option: @responds_to_event :click, :passing => :root@. + * If you want to debug events, just include the (WIP) @apotomo/debugging@ file and watch your server output on the console. + h3. Changes + * @Widget.responds_to_event@ is inheritable now. * The generator now places namespaced widgets into the correct sub-directories. +h3. Removals + * Removed the alias @Widget.respond_to_event@, please use @Widget.responds_to_event@. h2. 1.1 diff --git a/lib/apotomo/version.rb b/lib/apotomo/version.rb index 4614e99..1fd22a9 100644 --- a/lib/apotomo/version.rb +++ b/lib/apotomo/version.rb @@ -1,3 +1,3 @@ module Apotomo - VERSION = '1.1.0' + VERSION = '1.1.1' end