Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

For v0.2.1 release #4

Merged
merged 1 commit into from
Jul 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"