Skip to content

Commit

Permalink
versioning implementation progress
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
jeevatkm committed Mar 2, 2017
1 parent 3453b6b commit 23d9f4a
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ before_install:
- bash prepare-aah-env.sh "" "forge"

install:
- go get -v -t aahframework.org/forge/...
- go get -t aahframework.org/forge.v0/...

script:
- cd $GOPATH/src/aahframework.org/forge
- cd $GOPATH/src/aahframework.org/forge.v0
- bash go.test.sh
- go test -bench . -benchmem

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ forge

[![Build Status](https://travis-ci.org/go-aah/forge.svg?branch=master)](https://travis-ci.org/go-aah/forge)
[![codecov](https://codecov.io/gh/go-aah/forge/branch/master/graph/badge.svg)](https://codecov.io/gh/go-aah/forge)
[![GoDoc](https://godoc.org/aahframework.org/forge?status.svg)](https://godoc.org/aahframework.org/forge)
[![GoDoc](https://godoc.org/aahframework.org/forge.v0?status.svg)](https://godoc.org/aahframework.org/forge.v0)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)

Forge is a configuration syntax and parser forked for [aah framework](https://aahframework.org).

## Installation

`go get -u aahframework.org/forge`
`go get -u aahframework.org/forge.v0`

## Example

Expand Down Expand Up @@ -64,7 +64,7 @@ import (
"fmt"
"json"

"github.com/brettlangdon/forge"
"aahframework.org/forge.v0"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"testing"

"aahframework.org/forge"
"aahframework.org/forge.v0"
)

var exampleConfigBytes = []byte(`
Expand Down
2 changes: 1 addition & 1 deletion example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"aahframework.org/forge"
"aahframework.org/forge.v0"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"fmt"

"aahframework.org/forge"
"aahframework.org/forge.v0"
)

func Example() {
Expand Down
2 changes: 1 addition & 1 deletion forge_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"testing"

"aahframework.org/forge"
"aahframework.org/forge.v0"
)

var testConfigBytes = []byte(`
Expand Down
2 changes: 1 addition & 1 deletion primative_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package forge_test
import (
"testing"

"aahframework.org/forge"
"aahframework.org/forge.v0"
)

func TestNewPrimative(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion section_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"testing"

"aahframework.org/forge"
"aahframework.org/forge.v0"
)

func TestSectionKeys(t *testing.T) {
Expand Down

0 comments on commit 23d9f4a

Please sign in to comment.