Skip to content

Commit ead15b8

Browse files
committed
Version 0.2
1 parent c14d68f commit ead15b8

File tree

6 files changed

+23
-9
lines changed

6 files changed

+23
-9
lines changed

CHANGES

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
0.2 | 2011-01-07 10:06:31 -0800
2+
3+
* The script now waits a little bit after sending out each mail.
4+
Before, mails sent back-to-back could arrive with identical
5+
timestamps, making it harder to determine their actual order.
6+
(Robin Sommer)
7+
18
0.1-5 | 2011-01-02 10:18:10 -0800
29

310
* Updating update-changes. (Robin Sommer)

COPYING

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
Copyright (c) 2007-2010, Robin Sommer
2+
Copyright (c) 2010-2011, Robin Sommer
33

44
All rights reserved.
55

@@ -9,12 +9,12 @@ are met:
99

1010
* Redistributions of source code must retain the above copyright
1111
notice, this list of conditions and the following disclaimer.
12-
12+
1313
* Redistributions in binary form must reproduce the above
1414
copyright notice, this list of conditions and the following
1515
disclaimer in the documentation and/or other materials provided
1616
with the distribution.
17-
17+
1818
* Neither the name of the International Computer Science
1919
Institute nor the names of its contributors may be used to
2020
endorse or promote products derived from this software without

Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#
22
# Makefile is used only for building the distribution.
33

4-
VERSION = 0.1
4+
VERSION = 0.2
55

6-
DISTFILES = git-notifier README COPYING
6+
DISTFILES = git-notifier Makefile README COPYING CHANGES VERSION
77

88
WWW = $(HOME)/www/git-notifier
99

@@ -19,3 +19,4 @@ dist:
1919
www: dist
2020
rst2html.py README >$(WWW)/index.html
2121
cp git-notifier-$(VERSION).tar.gz $(WWW)
22+
cp CHANGES $(WWW)

README

+8-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
git-notifier
66
============
77

8-
:Version: 0.1
8+
:Version: 0.2
99
:Home: http://www.icir.org/robin/git-notifier
1010
:Author: Robin Sommer <[email protected]>
1111
:Date: |date|
@@ -84,7 +84,13 @@ Download
8484

8585
You can download the current version here:
8686

87-
http://www.icir.org/robin/git-notifier/git-notifier-0.1.tar.gz
87+
http://www.icir.org/robin/git-notifier/git-notifier-0.2.tar.gz
88+
89+
History
90+
-------
91+
92+
The `CHANGES <CHANGES>`_ file records recent updates to
93+
``git-notifier``.
8894

8995
Installation
9096
------------

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1-5
1+
0.2

git-notifier

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import tempfile
88
import time
99

1010
Name = "git-notifier"
11-
Version = "0.1"
11+
Version = "0.2"
1212
CacheFile = ".%s.dat" % Name
1313
Separator = "\n>---------------------------------------------------------------\n"
1414
NoDiff = "[nodiff]"

0 commit comments

Comments
 (0)