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

Commit

Permalink
*: Release v0.2.1
Browse files Browse the repository at this point in the history
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 <suda.akihiro@lab.ntt.co.jp>
  • Loading branch information
AkihiroSuda committed Sep 5, 2016
1 parent 2a83086 commit 6d51cdd
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/blog/content/post/release-0-2-0.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Note: we recently renamed _Earthquake_ to _Namazu_.

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

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

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

Expand Down
40 changes: 40 additions & 0 deletions doc/blog/content/post/release-0-2-1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
+++
categories = ["blog"]
date = "2016-09-05"
tags = ["document"]
title = "Release Namazu v0.2.1, with Namazu Swarm v0.0.1!"

+++

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

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

Namazu v0.2.1 is a maintanance release of [Namazu v0.2.0]({{< relref "post/release-0-2-0.md" >}})

You can download the Namazu v0.2.1 binary release from [github](https://github.com/osrg/namazu/releases/tag/v0.2.1).

Or you can also build Namazu manually:

$ sudo apt-get install libzmq3-dev libnetfilter-queue-dev
$ go get github.com/osrg/namazu/nmz

## 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

## Namazu Swarm v0.0.1

We also released the first version of [Namazu Swarm](https://github.com/osrg/namazu-swarm), CI Job Parallelizer built on Docker and Kubernetes
[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).

![Namazu Swarm](https://raw.githubusercontent.com/osrg/namazu-swarm/507f1ea51790ebc6d64740e8eb14e009d0353970/docs/img/nmzswarm.png)

Namazu Swarm is hosted at [osrg/namazu-swarm](https://github.com/osrg/namazu-swarm).
File renamed without changes
2 changes: 1 addition & 1 deletion misc/analyzer/java/base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>net.osrg</groupId>
<artifactId>namazu</artifactId>
<version>0.2.1-SNAPSHOT</version>
<version>0.2.1</version>
<packaging>jar</packaging>

<name>Namazu Analyzer (Java)</name>
Expand Down
2 changes: 1 addition & 1 deletion misc/inspector/java/base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>net.osrg</groupId>
<artifactId>namazu</artifactId>
<version>0.2.1-SNAPSHOT</version>
<version>0.2.1</version>
<packaging>jar</packaging>

<name>Namazu Inspector (Java)</name>
Expand Down
2 changes: 1 addition & 1 deletion nmz/util/core/coreutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
logutil "github.com/osrg/namazu/nmz/util/log"
)

const NamazuVersion = "0.2.1-SNAPSHOT"
const NamazuVersion = "0.2.1"

// Returns true if NMZ_DEBUG is set
func DebugMode() bool {
Expand Down

0 comments on commit 6d51cdd

Please sign in to comment.