Skip to content
This repository has been archived by the owner on Dec 17, 2020. It is now read-only.

Commit

Permalink
version bump, see CHANGES.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
dobe committed Sep 27, 2007
1 parent e5df882 commit 6914252
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGES.txt
Expand Up @@ -2,6 +2,14 @@
Changes for z3c.viewtemplate
============================

Version 0.3.0 (2007-09-27)
========================

- Add the request to BeforeUpdateEvent, this requires a recent
zope.contentprovider package.

- no dev release anymore

Version 0.2 (2007-05-01)
========================

Expand Down
2 changes: 1 addition & 1 deletion buildout.cfg
Expand Up @@ -8,4 +8,4 @@ recipe = zc.recipe.testrunner
eggs = z3c.viewtemplate [test]

[versions]
zope.contentprovider = 3.4.0a1
zope.contentprovider = 3.4.0b1.dev-r75494
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages

setup(name='z3c.viewtemplate',
version='0.2',
version='0.3.0',
author = "Zope Community",
author_email = "zope3-dev@zope.org",
description = open("README.txt").read(),
Expand Down
2 changes: 1 addition & 1 deletion src/z3c/viewtemplate/baseview.py
Expand Up @@ -45,7 +45,7 @@ def render(self):
class BaseView(TemplatedContentProvider, BrowserView):

def __call__(self):
event.notify(BeforeUpdateEvent(self))
event.notify(BeforeUpdateEvent(self, self.request))
self.update()
return self.render()

0 comments on commit 6914252

Please sign in to comment.