Skip to content

Commit

Permalink
Merge pull request #8 from sebastienfr/develop
Browse files Browse the repository at this point in the history
chore(all): make version 0.0.3
  • Loading branch information
sebastienfr committed Jul 13, 2016
2 parents be89c51 + 906d614 commit bf2aa62
Show file tree
Hide file tree
Showing 67 changed files with 3,530 additions and 984 deletions.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: go

go:
- 1.6
- tip

script:
- make build
- go get -u github.com/golang/lint/golint
- make lint
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
# Changelog

## v0.0.3 [16/07/13]
- 16/07/07 chore(vendor): update codegansta vendor to urfave (SFR)
chore(docker): update Go version to 1.6 in Docker deployment
chore(build): add travis build support

## v0.0.2 [16/06/06]
- 16/06/05 refact(dao): change dao Upsert signature to remove mgo dependency (SFR)
refact(model): fix model JSON annotation for age
fix(test): fix statistics test for expected request count
refact(web): refactor web server in a separate file and main entry point
feat(test): add full web server test
chores(test): add benchmarking target and instruction
chore(test): add benchmarking target and instruction
- 16/06/01 chore(test): add go routine to statistics test (SFR)

## v0.0.1 [16/05/31]
- 16/05/25 chore(test): fix tests to run from all OS (SFR/RLE)
- 16/05/19 feat(all): finalize web server, tests and test script (SFR)
feat(web): add web server, middleware and router and get implementation without range
refact(dao): fix panic on wrong object id format
chores(vendor): upate vendors with web dependency
chore(vendor): update vendors with web dependency
chore(etc): add scripts to query API
- 16/05/11 feat(dao): add model of spirits, mongo dao, factory and update vendors (SFR)
- 16/05/10 feat(all): project start, add command line, vendors, makefile, docker, logger, tests and statistics (SFR)
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# minimal linux distribution
FROM golang:1.5-wheezy
FROM golang:1.6-wheezy

# GO and PATH env variables already set in golang image

Expand Down
33 changes: 17 additions & 16 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export GO15VENDOREXPERIMENT=1
# -----------------------------------------------------------------

# version
VERSION=0.0.1
VERSION=0.0.3
BUILDDATE=$(shell date -u '+%s')
BUILDHASH=$(shell git rev-parse --short HEAD)
VERSION_FLAG=-ldflags "-X main.Version=$(VERSION) -X main.GitHash=$(BUILDHASH) -X main.BuildStmp=$(BUILDDATE)"
Expand Down Expand Up @@ -69,8 +69,8 @@ dependencies:
@echo "----- DOWNLOADING -------------------------------------------------------------------------"
@go get -u github.com/gorilla/mux
@go get -u github.com/gorilla/context
@go get -u github.com/codegangsta/negroni
@go get -u github.com/codegangsta/cli
@go get -u github.com/urfave/negroni
@go get -u github.com/urfave/cli
@go get -u github.com/Sirupsen/logrus
@go get -u gopkg.in/mgo.v2
@go get -u github.com/tools/godep
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#HANDSONGO
[![Build Status](https://travis-ci.org/sebastienfr/handsongo.svg?branch=master)](https://travis-ci.org/sebastienfr/handsongo)
[![GoDoc](https://godoc.org/github.com/sebastienfr/handsongo?status.svg)](https://godoc.org/github.com/sebastienfr/handsongo)
[![codebeat badge](https://codebeat.co/badges/4c43152a-e6f8-4781-b1b4-9f5c9c040c00)](https://codebeat.co/projects/github-com-sebastienfr-handsongo)
[![Software License](http://img.shields.io/badge/license-APACHE2-blue.svg)](https://github.com/sebastienfr/handsongo/blob/master/LICENSE)

This project is meant to help learning go.

```shell
make help
```
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion handsongo.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"encoding/base64"
"fmt"
logger "github.com/Sirupsen/logrus"
"github.com/codegangsta/cli"
"github.com/sebastienfr/handsongo/dao"
"github.com/sebastienfr/handsongo/utils"
"github.com/sebastienfr/handsongo/web"
"github.com/urfave/cli"
"os"
"strconv"
"time"
Expand Down
1 change: 1 addition & 0 deletions vendor/github.com/Sirupsen/logrus/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion vendor/github.com/Sirupsen/logrus/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 6 additions & 9 deletions vendor/github.com/Sirupsen/logrus/formatter.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions vendor/github.com/Sirupsen/logrus/text_formatter.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 25 additions & 3 deletions vendor/github.com/Sirupsen/logrus/writer.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 0 additions & 18 deletions vendor/github.com/codegangsta/cli/.travis.yml

This file was deleted.

Loading

0 comments on commit bf2aa62

Please sign in to comment.