Skip to content

Commit

Permalink
Bump version to 0.11.0
Browse files Browse the repository at this point in the history
Change-Id: I3fd57f2d85f30e5df0aa6dc29e3613a19410f5ea
Reviewed-on: https://softwarefactory-project.io/r/7777
Reviewed-by: Sylvain Afchain <safchain@gmail.com>
Tested-by: Sylvain Afchain <safchain@gmail.com>
Workflow: Sylvain Afchain <safchain@gmail.com>
Tested-by: Jenkins CI <jenkins@softwarefactory-project.io>
  • Loading branch information
lebauce authored and Jenkins CI committed May 5, 2017
1 parent 42a31d0 commit cd852d5
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 5 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
# Change Log
All notable changes to this project will be documented in this file.

## [0.11.0] - 2017-05-05
### Added
- Elasticsearch:
- Support Elasticsearch 5
- Bulk indexing for graph and flows for improved performance
- WebUI:
- Display bandwidth on L2 edges
- Restore discovery and conversation views
- Allow loading multiple configuration files
- Support for logging to file and syslog
- Bash completion file

### Changed
- Keep all netlink events ordered
- Websocket:
- Introduced namespace subscription mechanism
- Validate messages using JSON schemas
- Use bulk to reduce graph messages number
- Bug fixes:
- Fix analyzer deadlock on agent stop
- Return status error if capture registration failed

## [0.10.0] - 2017-03-30
### Added
- Support multiple analyzers for high availability and scalability
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION?=0.10.0
VERSION?=0.11.0

# really Basic Makefile for Skydive
export GO15VENDOREXPERIMENT=1
Expand Down
7 changes: 5 additions & 2 deletions contrib/packaging/rpm/skydive.spec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
%define gotest() go test -compiler gc -ldflags "${LDFLAGS:-}" %{?**};
%endif

%{!?tagversion:%global tagversion 0.10.0}
%{!?tagversion:%global tagversion 0.11.0}

# commit or tagversion need to be defined on command line
%if %{defined commit}
Expand All @@ -21,7 +21,7 @@
%define source %{tagversion}
%endif

%{!?source:%global source 0.10.0}
%{!?source:%global source 0.11.0}
%{!?tag:%global tag 1}

Name: skydive
Expand Down Expand Up @@ -135,6 +135,9 @@ install -D -m 644 skydive-bash-completion.sh %{buildroot}/%{_sysconfdir}/bash_co
%{_unitdir}/skydive-analyzer.service

%changelog
* Fri May 5 2017 Sylvain Baubeau <sbaubeau@redhat.com> - 0.11.0-1
- Bump to version 0.11.0

* Thu Mar 30 2017 Sylvain Baubeau <sbaubeau@redhat.com> - 0.10.0-1
- Bump to version 0.10.0

Expand Down
2 changes: 1 addition & 1 deletion doc/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ googleAnalytics = ""
provider = "GitHub"
repo_url = "https://github.com/skydive-project/skydive"

version = "0.10.0"
version = "0.11.0"
logo = "images/skydive-logo.png"
favicon = "images/skydive-logo-16x16.png"

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
var Package = "github.com/skydive-project/skydive"

// Version indicates which version of the binary is running.
var Version = "v0.10.0"
var Version = "v0.11.0"

// FprintVersion outputs the version string to the writer, in the following
// format, followed by a newline:
Expand Down

0 comments on commit cd852d5

Please sign in to comment.