diff --git a/cmd/version.go b/cmd/version.go index 33121c4..e362cf4 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -11,7 +11,7 @@ var versionCmd = &cobra.Command{ Short: "Print the version number of Yap", Long: `All software has versions. This is Yap's`, Run: func(cmd *cobra.Command, args []string) { - fmt.Println("Yap v1.0") + fmt.Println("Yap v1.1") }, } diff --git a/examples/yap/PKGBUILD b/examples/yap/PKGBUILD index c9762eb..2f11f99 100644 --- a/examples/yap/PKGBUILD +++ b/examples/yap/PKGBUILD @@ -1,5 +1,5 @@ pkgname=yap -pkgver=1.0 +pkgver=1.1 pkgrel=1 pkgdesc="Package software with ease" pkgdesc__alpine="Package software with ease for Alpine" diff --git a/project/project_test.go b/project/project_test.go index 5843ef1..a740307 100644 --- a/project/project_test.go +++ b/project/project_test.go @@ -10,7 +10,7 @@ import ( ) const examplePkgbuild = `pkgname="httpserver" -pkgver="1.0" +pkgver="1.1" pkgrel="1" pkgdesc="Http file server written with Go" pkgdesc_centos="Http file server written with Go for CentOS"