From 23d9f4a3648c222ad54acde1c8896ef057e8adca Mon Sep 17 00:00:00 2001 From: Jeevanandam M Date: Thu, 2 Mar 2017 14:51:42 -0800 Subject: [PATCH] versioning implementation progress [ci skip] --- .travis.yml | 4 ++-- README.md | 6 +++--- benchmark_test.go | 2 +- example/main.go | 2 +- example_test.go | 2 +- forge_test.go | 2 +- primative_test.go | 2 +- section_test.go | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index 129ade3..e85fa38 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/README.md b/README.md index f69f551..8592e35 100644 --- a/README.md +++ b/README.md @@ -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 @@ -64,7 +64,7 @@ import ( "fmt" "json" - "github.com/brettlangdon/forge" + "aahframework.org/forge.v0" ) func main() { diff --git a/benchmark_test.go b/benchmark_test.go index 7d8c8e0..2a111cb 100644 --- a/benchmark_test.go +++ b/benchmark_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "aahframework.org/forge" + "aahframework.org/forge.v0" ) var exampleConfigBytes = []byte(` diff --git a/example/main.go b/example/main.go index 9494c3a..6867086 100644 --- a/example/main.go +++ b/example/main.go @@ -3,7 +3,7 @@ package main import ( "fmt" - "aahframework.org/forge" + "aahframework.org/forge.v0" ) func main() { diff --git a/example_test.go b/example_test.go index 378970b..71fcf61 100644 --- a/example_test.go +++ b/example_test.go @@ -4,7 +4,7 @@ import ( "bytes" "fmt" - "aahframework.org/forge" + "aahframework.org/forge.v0" ) func Example() { diff --git a/forge_test.go b/forge_test.go index fd7daef..05a8d7a 100644 --- a/forge_test.go +++ b/forge_test.go @@ -6,7 +6,7 @@ import ( "os" "testing" - "aahframework.org/forge" + "aahframework.org/forge.v0" ) var testConfigBytes = []byte(` diff --git a/primative_test.go b/primative_test.go index ab2ec07..b272eb4 100644 --- a/primative_test.go +++ b/primative_test.go @@ -3,7 +3,7 @@ package forge_test import ( "testing" - "aahframework.org/forge" + "aahframework.org/forge.v0" ) func TestNewPrimative(t *testing.T) { diff --git a/section_test.go b/section_test.go index 7f4c700..ab8b08d 100644 --- a/section_test.go +++ b/section_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "aahframework.org/forge" + "aahframework.org/forge.v0" ) func TestSectionKeys(t *testing.T) {