Skip to content

Commit

Permalink
Bump version to 0.5.0 and add CHANGELOG.md file
Browse files Browse the repository at this point in the history
Change-Id: I04a60ff783486fd331a539ff38ad5b51f121f8fa
  • Loading branch information
lebauce committed Sep 15, 2016
1 parent f796258 commit 1d5013e
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
15 changes: 13 additions & 2 deletions contrib/packaging/rpm/skydive.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 <[email protected]> - 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 <[email protected]> - 0.4.0-1
- Bump to version 0.4.0

Expand Down
7 changes: 2 additions & 5 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 1d5013e

Please sign in to comment.