Skip to content

Commit

Permalink
Merge pull request #4 for v0.2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevatkm authored Jul 5, 2018
2 parents 0ae2a64 + e665368 commit 14b9cae
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ branches:

go:
- 1.9.x
- 1.10.x
- 1.x
- tip

go_import_path: aahframework.org/ainsp.v0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<h2 align="center">ainsp library</h2>
</p>
<p align="center">
<p align="center"><a href="https://travis-ci.org/go-aah/ainsp"><img src="https://travis-ci.org/go-aah/ainsp.svg?branch=master" alt="Build Status"></a> <a href="https://goreportcard.com/report/aahframework.org/ainsp.v0"><img src="https://goreportcard.com/badge/aahframework.org/ainsp.v0" alt="Go Report Card"></a> <a href="https://github.com/go-aah/aah/releases/latest"><img src="https://img.shields.io/badge/version-0.2.0-blue.svg" alt="Release Version"></a> <a href="https://twitter.com/aahframework"><img src="https://img.shields.io/badge/twitter-@aahframework-55acee.svg" alt="Twitter @aahframework"></a></p>
<p align="center"><a href="https://travis-ci.org/go-aah/ainsp"><img src="https://travis-ci.org/go-aah/ainsp.svg?branch=master" alt="Build Status"></a> <a href="https://goreportcard.com/report/aahframework.org/ainsp.v0"><img src="https://goreportcard.com/badge/aahframework.org/ainsp.v0" alt="Go Report Card"></a> <a href="https://github.com/go-aah/aah/releases/latest"><img src="https://img.shields.io/badge/version-0.2.1-blue.svg" alt="Release Version"></a> <a href="https://twitter.com/aahframework"><img src="https://img.shields.io/badge/twitter-@aahframework-55acee.svg" alt="Twitter @aahframework"></a></p>
</p>

Go ast library for aah framework, it does inspect and discovers the Go `struct` which embeds particular type `struct`. For e.g.: `aah.Context`, `ws.Context`.

### News

* v0.2.0 [released](https://github.com/go-aah/ainsp/releases/latest) and tagged on May 12, 2018
* v0.2.1 [released](https://github.com/go-aah/ainsp/releases/latest) and tagged on Jul 05, 2018


Visit official website https://aahframework.org to learn more about `aah`.
2 changes: 1 addition & 1 deletion package.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func (p *packageInfo) processImports(decl ast.Decl, imports map[string]string) {
} else { // build cache
pkg, err := build.Import(importPath, p.FilePath, 0)
if err != nil {
log.Errorf("AST: Unable to find import path: %s", importPath)
// log.Errorf("AST: Unable to find import path: %s", importPath)
continue
}
pkgAlias = pkg.Name
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
package ainsp

// Version no. of ainsp library for aah framework.
const Version = "0.2.0"
const Version = "0.2.1"

0 comments on commit 14b9cae

Please sign in to comment.