diff --git a/CHANGELOG.md b/CHANGELOG.md index 74ab040..4ff2348 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [v1.8.0](https://github.com/x-motemen/ghq/compare/v1.7.1...v1.8.0) - 2025-03-25 +- feat: support NO_COLOR environment variable by @hezhizhen in https://github.com/x-motemen/ghq/pull/411 +- Make the NO_COLOR environment variable accept strings other than the “true” strings by @Songmu in https://github.com/x-motemen/ghq/pull/417 +- improve --silent flag in get command by @Sixeight in https://github.com/x-motemen/ghq/pull/414 +- feat: support partial clone on Git repository by @RShirohara in https://github.com/x-motemen/ghq/pull/412 + ## [v1.7.1](https://github.com/x-motemen/ghq/compare/v1.7.0...v1.7.1) - 2024-11-09 - refine git vcs backend detection by @Songmu in https://github.com/x-motemen/ghq/pull/409 diff --git a/main.go b/main.go index 4fa9301..b533ef1 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( "github.com/x-motemen/ghq/logger" ) -const version = "1.7.1" +const version = "1.8.0" var revision = "HEAD"