Skip to content

Commit 4d56b57

Browse files
committed
Increment package version
1 parent e2a9c02 commit 4d56b57

File tree

6 files changed

+48
-6
lines changed

6 files changed

+48
-6
lines changed

contrib/archlinux/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Maintainer: Colton Wolkins <frostyfrog2@gmail.com
22
pkgname=renzoku-git
3-
pkgver=0.1.0
3+
pkgver=0.1.1
44
pkgrel=1
55
pkgdesc=""
66
arch=(x86_64)

debian/NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
renzoku (0.1.1-1) unstable; urgency=low
2+
3+
This is the first official realease which upstream thinks is somewhat stable.
4+
Between version 0.1.0 and 0.1.1, there have been changes involving how
5+
subprocesses are launched and managed. In version 0.1.0, there were issues
6+
where the build steps were run twice in a row. Now, in version 0.1.1, build
7+
and test steps are merely run once. Besides the way processes are managed,
8+
there have been a few infrastructure changes that will be exposed in a future
9+
release. For example, the ability to log to a file instead of standard output
10+
is possible, but it has yet to be exposed.
11+
12+
-- Colton Wolkins <frosty@frostyfrog.net> Sun, 04 Oct 2015 14:13:42 -0600

debian/changelog

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1-
renzoku (0.1.0-1) UNRELEASED; urgency=low
1+
renzoku (0.1.1-1) unstable; urgency=low
22

33
* Initial release of Debian package
4+
* Switched logging system to use vsnprintf and safe buffers lengths
5+
* Removed inotify timeout debug message
6+
* Switched inotify subsystem to use select, rather than just read
7+
* Removed "false positive" errors with waitpid
8+
* Added a process manager class to manage spawned processes
9+
10+
-- Colton Wolkins <frosty@frostyfrog.net> Sun, 04 Oct 2015 14:09:25 -0600
11+
12+
renzoku (0.1.0-1) UNRELEASED; urgency=low
13+
14+
* Initial Debian package files created
415

516
-- Colton Wolkins <frosty@frostyfrog.net> Sun, 13 Sep 2015 16:27:44 -0600

man/Makefile.am

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
man_MANS = renzoku.1
1+
man_MANS = renzoku.1 \
2+
renzoku.conf.5

man/renzoku.1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Manpage for renzoku.
22
.\" Contact renzoku@frostyfrog.net.in to correct errors or typos.
3-
.TH man 1 "08 September 2015" "0.1.0" "renzoku man page"
3+
.TH man 1 "04 October 2015" "0.1.1" "renzoku man page"
44
.SH NAME
55
renzoku \- perform tedious tasks when files change
66
.SH SYNOPSIS
@@ -9,10 +9,10 @@ renzoku [OPTIONS] [DIRECTORY]
99
renzoku is a high level file watcher that performs user specified commands (via
1010
renzoku.conf(5)) when underlying files change.
1111
.SH OPTIONS
12-
The nuseradd does not currently take any options. That is a future feature.
12+
Renzoku does not currently take any options. That is a future feature.
1313
.SH SEE ALSO
1414
renzoku.conf(5), inotify(7)
1515
.SH BUGS
1616
A fair few known bugs. renzoku is still in early development afterall.
1717
.SH AUTHOR
18-
Vivek Gite (vivek@nixcraft.net.in)
18+
Colton Wolkins (frostyfrog2@gmail.com)

man/renzoku.conf.5

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
.\" Manpage for renzoku.
2+
.\" Contact renzoku@frostyfrog.net.in to correct errors or typos.
3+
.TH man 1 "04 October 2015" "0.1.1" "renzoku.conf man page"
4+
.SH NAME
5+
renzoku.conf \- renzoku(1) build system project configuration file
6+
.SH SYNOPSIS
7+
renzoku.conf
8+
.SH DESCRIPTION
9+
renzoku(1) is a high level file watcher that performs user specified commands
10+
when underlying files change. The commands which are run are contained within a
11+
file named renzoku.conf. More explanation to come later on. For now, please see
12+
the example located in /usr/share/doc/renzoku/renzoku.conf
13+
.SH SEE ALSO
14+
renzoku(1)
15+
.SH BUGS
16+
A fair few known bugs. renzoku is still in early development afterall.
17+
.SH AUTHOR
18+
Colton Wolkins (frostyfrog2@gmail.com)

0 commit comments

Comments
 (0)