Skip to content
This repository was archived by the owner on Dec 13, 2021. It is now read-only.

Commit e32a847

Browse files
authored
*: Release v0.2.1 (#171)
Release Note: http://osrg.github.io/namazu/post/release-0-2-1/ Changes from v0.2.0: * #167, #168, #169, #170: doc: miscellaneous improvements * #166: vendor go packages * #163: *: bump up Go to 1.7 * #162: container: add support for inspectors/fs * #160: inspectors/fs: implement Fsync * #158, #159: inspectors/fs: improved CLI (thank you @v01dstar !) * #156: inspectors/proc: improved error handling * #154, #155: inspectors/proc: improved CLI Signed-off-by: Akihiro Suda <[email protected]>
1 parent 2a83086 commit e32a847

File tree

6 files changed

+44
-4
lines changed

6 files changed

+44
-4
lines changed

doc/blog/content/post/release-0-2-0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Note: we recently renamed _Earthquake_ to _Namazu_.
99

1010
We are glad to annouce the release of [Namazu](https://github.com/osrg/namazu) v0.2.0.
1111

12-
![Overview](/namazu/images/namazu.png)
12+
![Overview](/namazu/images/namazu-v0.2.png)
1313

1414
Namazu v0.2.0 includes many new features: Process inspector, Filesystem inspector, Container CLI, Semi-deterministic replaying API...
1515

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
+++
2+
categories = ["blog"]
3+
date = "2016-09-05"
4+
tags = ["document"]
5+
title = "Release Namazu v0.2.1, with Namazu Swarm v0.0.1!"
6+
7+
+++
8+
9+
We are glad to annouce the release of [Namazu](https://github.com/osrg/namazu) v0.2.1.
10+
11+
![Overview](/namazu/images/namazu-v0.2.png)
12+
13+
Namazu v0.2.1 is a maintanance release of [Namazu v0.2.0]({{< relref "post/release-0-2-0.md" >}})
14+
15+
You can download the Namazu v0.2.1 binary release from [github](https://github.com/osrg/namazu/releases/tag/v0.2.1).
16+
17+
Or you can also build Namazu manually:
18+
19+
$ sudo apt-get install libzmq3-dev libnetfilter-queue-dev
20+
$ go get github.com/osrg/namazu/nmz
21+
22+
## Changes from v0.2.0
23+
24+
* #167, #168, #169, #170: doc: miscellaneous improvements
25+
* #166: vendor go packages
26+
* #163: *: bump up Go to 1.7
27+
* #162: container: add support for inspectors/fs
28+
* #160: inspectors/fs: implement Fsync
29+
* #158, #159: inspectors/fs: improved CLI (thank you @v01dstar !)
30+
* #156: inspectors/proc: improved error handling
31+
* #154, #155: inspectors/proc: improved CLI
32+
33+
## Namazu Swarm v0.0.1
34+
35+
We also released the first version of [Namazu Swarm](https://github.com/osrg/namazu-swarm), CI Job Parallelizer built on Docker and Kubernetes
36+
[Namazu Swarm](https://github.com/osrg/namazu-swarm) is developed as a part of Namazu, but it does not depends on Namazu (although you can combine them together).
37+
38+
![Namazu Swarm](https://raw.githubusercontent.com/osrg/namazu-swarm/507f1ea51790ebc6d64740e8eb14e009d0353970/docs/img/nmzswarm.png)
39+
40+
Namazu Swarm is hosted at [osrg/namazu-swarm](https://github.com/osrg/namazu-swarm).
File renamed without changes.

misc/analyzer/java/base/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>net.osrg</groupId>
66
<artifactId>namazu</artifactId>
7-
<version>0.2.1-SNAPSHOT</version>
7+
<version>0.2.1</version>
88
<packaging>jar</packaging>
99

1010
<name>Namazu Analyzer (Java)</name>

misc/inspector/java/base/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>net.osrg</groupId>
66
<artifactId>namazu</artifactId>
7-
<version>0.2.1-SNAPSHOT</version>
7+
<version>0.2.1</version>
88
<packaging>jar</packaging>
99

1010
<name>Namazu Inspector (Java)</name>

nmz/util/core/coreutil.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
logutil "github.com/osrg/namazu/nmz/util/log"
2727
)
2828

29-
const NamazuVersion = "0.2.1-SNAPSHOT"
29+
const NamazuVersion = "0.2.1"
3030

3131
// Returns true if NMZ_DEBUG is set
3232
func DebugMode() bool {

0 commit comments

Comments
 (0)