From d1ecaef3d6dd66eb62b7cbbfe497c7e1c0f6e55f Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Fri, 9 May 2008 19:52:15 +0000 Subject: [PATCH] Fixed tools/release.sh to include an empty session directory in the produced tarball. Without a session directory, installing and running Luminotes server would yield session deadlock errors. --- NEWS | 7 ++++++- tools/release.sh | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index e09d9ac..9237137 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +1.3.23: May 9, 2008 + * Fixed tools/release.sh to include an empty session directory in the + produced tarball. Without a session directory, installing and running + Luminotes server would yield session deadlock errors. + 1.3.22: May 8, 2008 * In send_invites(), no longer implicitly assuming rate plan 0 has notebook_collaboration set to False. @@ -43,7 +48,7 @@ * Fixed a bug where the Valid_id() validator would raise a TypeError when given a None value. Now raising a ValueError instead. * Fixed a bug where saving a note unsuccessfully could cause the note's - title show up in the recent updates list. + title to show up in the recent updates list. * If there is an error saving a note, then even if "hide" was clicked, the note is not hidden. Instead, the note stays open so that the user can try again. diff --git a/tools/release.sh b/tools/release.sh index 673989e..21c0882 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -4,5 +4,5 @@ cd .. rm -f luminotes.tar.gz -tar cvfz luminotes.tar.gz --exclude=session --exclude="*.log" --exclude="*.pyc" --exclude=".*" luminotes +tar cvfz luminotes.tar.gz --exclude="session/*" --exclude="*.log" --exclude="*.pyc" --exclude=".*" luminotes cd -