summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2016-03-22 22:36:06 +0200
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2016-03-22 22:36:06 +0200
commitb4299f7b283ebd645520f5c2866b8ca6172e13e8 (patch)
tree9f6e849cce2dcc7e5b4e9e6252c843dc2d0787a2
parent173e0e46b70b37f2adb717aa01a6f189ac3d207b (diff)
Prepare release 1.0.0v1.0.0
-rw-r--r--.gitignore27
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac4
-rw-r--r--netdata.spec.in6
5 files changed, 39 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index 0a3e8d42fa..c53df5fc11 100644
--- a/.gitignore
+++ b/.gitignore
@@ -27,3 +27,30 @@ apps.plugin
netdata.spec
*.tar.*
+
+.cproject
+.idea/
+.project
+CMakeLists.txt
+TODO.md
+asan_symbolize.py
+charts.d/bind.chart.sh
+conf.d/netdata.conf
+conf.d/netdata.conf.old
+isolate-0x1e0e170-v8.log
+lan-hosts.sh
+modp_numtoa.c
+plugins.d/apache_mod_status.plugin
+plugins.d/apps.plugin.old
+src/.cproject
+src/.project
+src/.settings/
+src/TODO.txt
+src/rrddim_file.c
+valgrind.log
+valgrind2.log
+web/chart-info/
+web/control.html
+web/datasource.css
+web/gadget.xml
+web/index_new.html
diff --git a/ChangeLog b/ChangeLog
index 598080476d..244034862e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+netdata (1.0.0) - 2016-03-22
+
+ - first public release
+
netdata (1.0.0-rc.1) - 2015-11-28
- initial packaging
diff --git a/Makefile.am b/Makefile.am
index 59e7451559..72f0502cd5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -24,6 +24,8 @@ EXTRA_DIST = \
autogen.sh \
netdata-9999.ebuild \
tests/stress.sh \
+ system/netdata-openrc \
+ system/netdata-systemd \
$(NULL)
SUBDIRS = \
diff --git a/configure.ac b/configure.ac
index 7fb4815605..5aa31be386 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7,10 +7,10 @@ define([VERSION_MAJOR], [1])
define([VERSION_MINOR], [0])
define([VERSION_FIX], [0])
define([VERSION_NUMBER], VERSION_MAJOR[.]VERSION_MINOR[.]VERSION_FIX)
-define([VERSION_SUFFIX], [_master])
+define([VERSION_SUFFIX], [])
dnl Set to "1" for a first RPM release of a new version
-PACKAGE_RPM_RELEASE="0.0.$(echo VERSION_SUFFIX | sed 's/^_//')"
+PACKAGE_RPM_RELEASE="1"
AC_INIT([netdata], VERSION_NUMBER[]VERSION_SUFFIX)
diff --git a/netdata.spec.in b/netdata.spec.in
index 5cd8eb96fc..f2e41dfe7c 100644
--- a/netdata.spec.in
+++ b/netdata.spec.in
@@ -16,7 +16,7 @@ Requires: zlib
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
-Linux real time system monitoring, over the web!
+Real-time performance monitoring, in the greatest possible detail!
%pre
getent group netdata > /dev/null || groupadd -r netdata
@@ -53,5 +53,7 @@ find "%{buildroot}" -name .keep -exec rm {} \;
%{_libexecdir}/%{name}/
%changelog
-* Sun Nov 15 2015 Alon Bar-Lev <alonbl@redhat.com> - 1.0.0-1
+* Tue Mar 22 2016 Costa Tsaousis <costa@tsaousis.gr> - 1.0.0-1
+- First public release.
+* Sun Nov 15 2015 Alon Bar-Lev <alonbl@redhat.com> - 0.0.0-1
- Initial add.