aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2021-09-24 15:22:11 -0400
committerB Stack <bgstack15@gmail.com>2021-09-24 15:22:11 -0400
commit3f3477e089e7fe51a67ba925b13559003e656c6d (patch)
tree978974205aa01724c02bd3a639a887f8d3b7a02e
parentfix x-forwarded-prefix header consumption (diff)
downloadfuss-3f3477e089e7fe51a67ba925b13559003e656c6d.tar.gz
fuss-3f3477e089e7fe51a67ba925b13559003e656c6d.tar.bz2
fuss-3f3477e089e7fe51a67ba925b13559003e656c6d.zip
bump version string to 0.0.2
-rw-r--r--debian/changelog6
-rw-r--r--debian/fuss.dsc (renamed from debian/fuss_0.0.1-1.dsc)2
-rw-r--r--extra/Makefile2
-rw-r--r--extra/fuss.spec5
4 files changed, 12 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 3e9adb2..2c9fef4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+fuss (0.0.2-1) obs; urgency=low
+
+ * Upstream update
+
+ -- B. Stack <bgstack15@gmail.com> Fri, 24 Sep 2021 15:12:59 -0400
+
fuss (0.0.1-1) obs; urgency=low
* Initial release. Closes: packages-want#000
diff --git a/debian/fuss_0.0.1-1.dsc b/debian/fuss.dsc
index 03f8625..efc1110 100644
--- a/debian/fuss_0.0.1-1.dsc
+++ b/debian/fuss.dsc
@@ -2,7 +2,7 @@ Format: 3.0 (quilt)
Source: fuss
Binary: fuss
Architecture: all
-Version: 0.0.1-1
+Version: 0.0.2-1
Maintainer: B. Stack <bgstack15@gmail.com>
Homepage: https://gitlab.com/bgstack15/fuss/
Standards-Version: 4.5.0
diff --git a/extra/Makefile b/extra/Makefile
index d18b75a..53e7b68 100644
--- a/extra/Makefile
+++ b/extra/Makefile
@@ -15,7 +15,7 @@
# build-devuan:
APPNAME = fuss
-APPVERSION = 0.0.1
+APPVERSION = 0.0.2
SRCDIR = $(CURDIR)/..# because Makefile is in extra/ inside this repo
prefix = /usr
SYSCONFDIR = $(DESTDIR)/etc
diff --git a/extra/fuss.spec b/extra/fuss.spec
index 3a76060..fcc9f8f 100644
--- a/extra/fuss.spec
+++ b/extra/fuss.spec
@@ -36,7 +36,7 @@
Summary: file upload and storage service web app
Name: fuss
-Version: 0.0.1
+Version: 0.0.2
Release: 1
License: GPL 3.0
Source0: %{name}_%{version}.orig.tar.gz
@@ -164,5 +164,8 @@ exit 0
%{_defaultdocdir}/%{name}
%changelog
+* Fri Sep 24 2021 B. Stack <bgstack15@gmail.com> - 0.0.2-1
+- Upstream update
+
* Tue Jan 05 2021 B. Stack <bgstack15@gmail.com> - 0.0.1-1
- Initial release
bgstack15