Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
fiorix committed Apr 15, 2016
1 parent 8b463c8 commit a428c39
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

PKG=go-daemon-1.2
VERSION=1.3

PKG=go-daemon-$(VERSION)
TGZ=$(PKG).tar.gz

all: god

god:
cc god.c -o god -lpthread
cc -Wall -DVERSION=\"$(VERSION)\" -o god god.c -lpthread

clean:
rm -f god $(TGZ)
Expand Down
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
go-daemon (1.3) precise; urgency=low

* Fix for detaching from terminal
* Fix for privilege escalation due to weak privdrop

-- Alexandre Fiori <[email protected]> Fri, 15 Apr 2016 04:43:11 +0000

go-daemon (1.2-1) precise; urgency=low

* Fixed typo in cmdline args
Expand Down
6 changes: 5 additions & 1 deletion rpm/go-daemon.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Summary: Daemonize other programs
Name: go-daemon
Version: 1.2
Version: 1.3
Release: 1
License: BSD
Group: Utilities
Expand Down Expand Up @@ -32,6 +32,10 @@ make DESTDIR=%{buildroot} install
%{_bindir}/god

%changelog
* Fri Apr 15 2016 Alexandre Fiori <[email protected]> 1.3
- Fix for detaching from terminal
- Fix for privilege escalation due to weak privdrop

* Thu Jan 02 2014 Alexandre Fiori <[email protected]> 1.2-1
- Fixed typo in cmdline args

Expand Down

0 comments on commit a428c39

Please sign in to comment.