aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md16
-rw-r--r--Makefile2
2 files changed, 17 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4211096..143e437 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,19 @@
1## 0.9.0 / unreleased
2
3* [BUGFIX] Fix `/proc/net/dev` parsing.
4* [CLEANUP] Remove the `attributes` collector, use `textfile` instead.
5* [CLEANUP] Replace last uses of the configuration file with flags.
6* [IMPROVEMENT] Remove cgo dependency.
7* [IMPROVEMENT] Sort collector names when printing.
8* [FEATURE] IPVS stats collector.
9
10## 0.8.1 / 2015-05-17
11
12* [MAINTENANCE] Use the common Prometheus build infrastructure.
13* [MAINTENANCE] Update former Google Code imports.
14* [IMPROVEMENT] Log the version at startup.
15* [FEATURE] TCP stats collector
16
1## 0.8.0 / 2015-03-09 17## 0.8.0 / 2015-03-09
2* [CLEANUP] Introduced semantic versioning and changelog. From now on, 18* [CLEANUP] Introduced semantic versioning and changelog. From now on,
3 changes will be reported in this file. 19 changes will be reported in this file.
diff --git a/Makefile b/Makefile
index 523f989..96e257b 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@
11# See the License for the specific language governing permissions and 11# See the License for the specific language governing permissions and
12# limitations under the License. 12# limitations under the License.
13 13
14VERSION := 0.8.1 14VERSION := 0.9.0
15TARGET := node_exporter 15TARGET := node_exporter
16GOFLAGS := -ldflags "-X main.Version $(VERSION)" 16GOFLAGS := -ldflags "-X main.Version $(VERSION)"
17 17