From 5dc5522a5ae494dafda65e5b7309dd35b80b5a51 Mon Sep 17 00:00:00 2001 From: Jeevanandam M Date: Wed, 26 Dec 2018 22:35:42 -0800 Subject: [PATCH] readme update for v1.0.0-beta.2 release and minor info update --- README.md | 9 +++++---- app/datastore/datastore.go | 2 +- views/pages/admin/gomod/index.html | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 40632e5..6e3fcf9 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,22 @@

-

Go Mod Repository, Go Vanity and Proxy Server

+

Go Mod Repository, Go Vanity Server and Proxy Server

-

Build Status Go Report Card Release Version Slack #thumbai

+

Build Status Go Report Card Release Version Slack #thumbai

## News -* [v1.0.0-beta](https://github.com/thumbai/thumbai/releases/latest) Initial public beta release on Dec 10, 2018. +* [v1.0.0-beta.2](https://github.com/thumbai/thumbai/releases/latest) Initial public beta release on Dec 26, 2018. +* [v1.0.0-beta](https://github.com/thumbai/thumbai/releases/tag/v1.0.0-beta) Initial public beta release on Dec 10, 2018. ## Features Provides an ability to have your own- * Go Modules Respository - for organization/individual, never loose dependency libraries. -* Go Vanity Service - Decouple SCM repository path from Go import path. +* Go Vanity Server - Decouple SCM repository path from Go import path. * Simple Proxy Server - Hosted applications on the same box then simply proxy it behind. Every feature is on-demand and could be used individually. All THUMBAI features fully utilized by `aahframework.org`, `aahframe.work` and also THUMBAI proxy replaced my nginx proxy server. diff --git a/app/datastore/datastore.go b/app/datastore/datastore.go index 6dd0da6..53778c0 100644 --- a/app/datastore/datastore.go +++ b/app/datastore/datastore.go @@ -132,7 +132,7 @@ func Del(bucketName, key string) error { // BucketKeys method returns all the bucket keys for given name. func BucketKeys(name string) []string { var keys []string - thumbaiDB.View(func(tx *bolt.Tx) error { + _ = thumbaiDB.View(func(tx *bolt.Tx) error { b := tx.Bucket([]byte(name)) if err := b.ForEach(func(k, _ []byte) error { keys = append(keys, string(k)) diff --git a/views/pages/admin/gomod/index.html b/views/pages/admin/gomod/index.html index b0c026f..12a0bd2 100644 --- a/views/pages/admin/gomod/index.html +++ b/views/pages/admin/gomod/index.html @@ -66,7 +66,7 @@ - Supported go module path syntax's are + Supported go module path syntax's are
Required