diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e9b51a..d3632e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) + +## [1.7.7] - Unreleased +### Added +- Filtering repos by topics for gitlab; thanks @dschafhauser +### Changed +### Deprecated +### Removed +### Fixed +### Security ## [1.7.6] - 1/15/22 ### Added - goreleaser diff --git a/cmd/version.go b/cmd/version.go index 67d1b25..70d8411 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -11,6 +11,6 @@ var versionCmd = &cobra.Command{ Short: "Print the version number of Ghorg", Long: `All software has versions. This is Ghorg's`, Run: func(cmd *cobra.Command, args []string) { - fmt.Println("v1.7.6") + fmt.Println("v1.7.7") }, }