Prepare for 0.6.1 release
Change-Id: I962d75dd53d205d7e341d6f139e0aac3d08405ef
Refs: #4564
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 7205cd5..1034e8e 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,16 +1,35 @@
Release Notes
=============
+## Version 0.6.1
+
+chunks:
+- Show correct packet loss stats in final summary (Issue #4437)
+- Avoid printing meaningless values when no RTT measurements are available (Issue #4551)
+
+dissect:
+- Recognize `CanBePrefix`, `HopLimit`, and `Parameters` TLV elements (Issue #4590)
+
+dissect-wireshark:
+- Recognize `CanBePrefix`, `HopLimit`, and `Parameters` TLV elements (Issue #4517)
+
+peek:
+- Drop Selectors support (Issue #4571)
+- Add `-P/--prefix` option to set `CanBePrefix` in the Interest packet
+
+build scripts:
+- Upgrade `waf` to the latest version and other improvements
+
## Version 0.6
chunks:
-- include RTT stats in final summary
-- respect `--retries=-1` in AIMD pipeline
-- change the default pipeline to AIMD
-- react to congestion marks by default as a timeout event (can be disabled using
- `--aimd-ignore-cong-marks`)
-- print a final summary of the transfer regardless of the pipeline type, and even if
- `--verbose` was not specified
+- Change the default Interest pipeline to AIMD (Issue #4402)
+- Include RTT stats in final summary (Issue #4406)
+- Respect `--retries=-1` in the AIMD pipeline (Issue #4409)
+- React to congestion marks by default as a timeout event (can be disabled using
+ `--aimd-ignore-cong-marks`) (Issue #4289)
+- Print a final summary of the transfer regardless of the pipeline type, and even if
+ `--verbose` was not specified (Issue #4421)
## Version 0.5
@@ -62,7 +81,7 @@
ping:
- Recognize and trace NACK
-- Fix potential divide-by-zero bug in StatisticsCollector (Issue #3504)
+- Fix potential divide-by-zero bug in `StatisticsCollector` (Issue #3504)
peek:
- Recognize and properly handle NACK
@@ -85,7 +104,7 @@
- Update docs to include NACK capture feature
build scripts:
-- Enable -Wextra by default
+- Enable `-Wextra` by default
- Fix missing tool name in `configure --help` output
- Fix compatibility with Python 3
diff --git a/wscript b/wscript
index 5e8f5d5..4782454 100644
--- a/wscript
+++ b/wscript
@@ -1,6 +1,6 @@
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
-VERSION = '0.6'
+VERSION = '0.6.1'
APPNAME = 'ndn-tools'
GIT_TAG_PREFIX = 'ndn-tools-'