From 1d5013eb885e3f144e7751eeca6361827d0c990a Mon Sep 17 00:00:00 2001 From: Sylvain Baubeau Date: Thu, 15 Sep 2016 15:11:20 +0200 Subject: [PATCH] Bump version to 0.5.0 and add CHANGELOG.md file Change-Id: I04a60ff783486fd331a539ff38ad5b51f121f8fa --- CHANGELOG.md | 16 ++++++++++++++++ contrib/packaging/rpm/skydive.spec | 15 +++++++++++++-- version/version.go | 7 ++----- 3 files changed, 31 insertions(+), 7 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000..a3eb067507 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# Change Log +All notable changes to this project will be documented in this file. + +## [0.5.0] - 2016-09-15 +### Added +- Gremlin improvements: + - Allow filtering flows in Gremlin query + - Add bandwidth calculation + - New steps: Count, Both + - New predicates: Lt, Gt, Lte, Gte, Between, Inside, Outside + +### Changed +- Scaling improvements +- Use protobuf instead of JSON for analyzer - agent communications +- Switch Docker image to Ubuntu +- Improved release pipeline (executables, Docker image) diff --git a/contrib/packaging/rpm/skydive.spec b/contrib/packaging/rpm/skydive.spec index 8f56e50843..682f6a4d12 100644 --- a/contrib/packaging/rpm/skydive.spec +++ b/contrib/packaging/rpm/skydive.spec @@ -12,8 +12,8 @@ %define source %{tagversion} %endif -%{!?tagversion:%define tagversion 0.4.0} -%{!?source:%define source 0.4.0} +%{!?tagversion:%define tagversion 0.5.0} +%{!?source:%define source 0.5.0} %{!?tag:%define tag 1} Name: skydive @@ -120,6 +120,17 @@ install -D -m 644 etc/skydive.yml.default %{buildroot}/%{_sysconfdir}/skydive/sk %{_unitdir}/skydive-analyzer.service %changelog +* Thu Sep 15 2016 Sylvain Baubeau - 0.5.0-1 +- Gremlin improvements: + - Allow filtering flows in Gremlin query + - Add bandwidth calculation + - New steps: Count, Both + - New predicates: Lt, Gt, Lte, Gte, Between, Inside, Outside +- Scaling improvements +- Use protobuf instead of JSON for analyzer - agent communications +- Switch Docker image to Ubuntu +- Improved release pipeline (executables, Docker image) + * Thu Aug 4 2016 Sylvain Baubeau - 0.4.0-1 - Bump to version 0.4.0 diff --git a/version/version.go b/version/version.go index 38ecf41910..96a83846c2 100644 --- a/version/version.go +++ b/version/version.go @@ -10,11 +10,8 @@ import ( // package was built. var Package = "github.com/skydive-project/skydive" -// Version indicates which version of the binary is running. This is set to -// the latest release tag by hand, always suffixed by "+unknown". During -// build, it will be replaced by the actual version. The value here will be -// used if Skydive is run after a go get based install. -var Version = "v0.4.0+unknown" +// Version indicates which version of the binary is running. +var Version = "v0.5.0" // FprintVersion outputs the version string to the writer, in the following // format, followed by a newline: