Skip to content

Commit

Permalink
update module name, go version to v1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
ajinkya-verloop committed Aug 19, 2024
1 parent 6243363 commit 7aaf546
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Mustache Template Engine for Go

[![Build Status](https://img.shields.io/travis/cbroglie/mustache.svg)](https://travis-ci.org/cbroglie/mustache)
[![Go Doc](https://godoc.org/github.com/cbroglie/mustache?status.svg)](https://godoc.org/github.com/cbroglie/mustache)
[![Go Report Card](https://goreportcard.com/badge/github.com/cbroglie/mustache)](https://goreportcard.com/report/github.com/cbroglie/mustache)
[![Go Doc](https://godoc.org/github.com/verloop/mustache?status.svg)](https://godoc.org/github.com/verloop/mustache)
[![Go Report Card](https://goreportcard.com/badge/github.com/verloop/mustache)](https://goreportcard.com/report/github.com/verloop/mustache)
[![codecov](https://codecov.io/gh/cbroglie/mustache/branch/master/graph/badge.svg)](https://codecov.io/gh/cbroglie/mustache)
[![Downloads](https://img.shields.io/github/downloads/cbroglie/mustache/latest/total.svg)](https://github.com/cbroglie/mustache/releases)
[![Latest release](https://img.shields.io/github/release/cbroglie/mustache.svg)](https://github.com/cbroglie/mustache/releases)
[![Downloads](https://img.shields.io/github/downloads/cbroglie/mustache/latest/total.svg)](https://github.com/verloop/mustache/releases)
[![Latest release](https://img.shields.io/github/release/cbroglie/mustache.svg)](https://github.com/verloop/mustache/releases)


<img src="./images/logo.jpeg" alt="logo" width="100"/>
Expand All @@ -24,7 +24,7 @@ I forked [hoisie/mustache](https://github.com/hoisie/mustache) because it does n
## CLI Overview

```bash
~ go install github.com/cbroglie/mustache/cmd/mustache@latest
~ go install github.com/verloop/mustache/cmd/mustache@latest
~ mustache
Usage:
mustache [data] template [flags]
Expand Down Expand Up @@ -64,7 +64,7 @@ Also check out some [example mustache files](http://github.com/mustache/mustache

## Installation

To install the CLI, run `go install github.com/cbroglie/mustache/cmd/mustache@latest`. To use it in a program, run `go get github.com/cbroglie/mustache` and use `import "github.com/cbroglie/mustache"`.
To install the CLI, run `go install github.com/verloop/mustache/cmd/mustache@latest`. To use it in a program, run `go get github.com/verloop/mustache` and use `import "github.com/verloop/mustache"`.

----

Expand Down
2 changes: 1 addition & 1 deletion cmd/mustache/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/spf13/cobra"
"gopkg.in/yaml.v2"

"github.com/cbroglie/mustache"
"github.com/verloop/mustache"
)

var rootCmd = &cobra.Command{
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cbroglie/mustache
module github.com/verloop/mustache

go 1.20
go 1.21

require (
github.com/spf13/cobra v1.7.0
Expand Down

0 comments on commit 7aaf546

Please sign in to comment.