Skip to content

Commit

Permalink
feat: release v.1.3 version (#125)
Browse files Browse the repository at this point in the history
* feat: release v.1.3 version

* add comment for const
  • Loading branch information
easonlin404 authored and pei0804 committed May 17, 2018
1 parent de12a77 commit a3d0221
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/swag/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ package main
import (
"os"

"github.com/swaggo/swag"
"github.com/swaggo/swag/gen"
"github.com/urfave/cli"
)

func main() {
app := cli.NewApp()
app.Version = "v1.2.0"
app.Version = swag.Version
app.Usage = "Automatically generate RESTful API documentation with Swagger 2.0 for Go."
app.Commands = []cli.Command{
{
Expand Down
4 changes: 4 additions & 0 deletions version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package swag

// Version for swag
const Version = "v1.3.0"

0 comments on commit a3d0221

Please sign in to comment.