v1.4.1
This commit is contained in:
parent
12dab4e893
commit
ddfba96c88
3 changed files with 9 additions and 4 deletions
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
_No unreleased changes._
|
||||
|
||||
## [1.4.1] - 2021-02-17
|
||||
|
||||
### Fixed
|
||||
- Correctly get the repository's default branch. The related change in version
|
||||
1.4.0 actually broke updating the modules, as new changes stopped being
|
||||
|
@ -153,7 +157,8 @@ Take your time to review the updated [README.md] and the changes listed below.
|
|||
[termtitle]: https://github.com/zimfw/termtitle
|
||||
[s1ck94]: https://github.com/zimfw/s1ck94
|
||||
|
||||
[Unreleased]: https://github.com/zimfw/zimfw/compare/v1.4.0...HEAD
|
||||
[Unreleased]: https://github.com/zimfw/zimfw/compare/v1.4.1...HEAD
|
||||
[1.4.1]: https://github.com/zimfw/zimfw/compare/v1.4.0...v1.4.1
|
||||
[1.4.0]: https://github.com/zimfw/zimfw/compare/v1.3.2...v1.4.0
|
||||
[1.3.2]: https://github.com/zimfw/zimfw/compare/v1.3.1...v1.3.2
|
||||
[1.3.1]: https://github.com/zimfw/zimfw/compare/v1.3.0...v1.3.1
|
||||
|
|
|
@ -6,7 +6,7 @@ class Zim
|
|||
@home = "${ZDOTDIR:-${HOME}}"
|
||||
@min_zsh_version = "5.2"
|
||||
@startup_files_glob = ".z(shenv|profile|shrc|login|logout)"
|
||||
@version = "1.4.1-SNAPSHOT"
|
||||
@version = "1.4.1"
|
||||
@ellipsis = " ..."
|
||||
@okay = "%F{green})%f "
|
||||
@warn = "! "
|
||||
|
|
|
@ -319,7 +319,7 @@ _zimfw_compile() {
|
|||
}
|
||||
|
||||
_zimfw_info() {
|
||||
print -R 'zimfw version: '${_zversion}' (built at 2021-02-17 22:48:17 UTC, previous commit is 36aa1b3)'
|
||||
print -R 'zimfw version: '${_zversion}' (built at 2021-02-17 23:25:22 UTC, previous commit is 12dab4e)'
|
||||
print -R 'ZIM_HOME: '${ZIM_HOME}
|
||||
print -R 'Zsh version: '${ZSH_VERSION}
|
||||
print -R 'System info: '$(command uname -a)
|
||||
|
@ -366,7 +366,7 @@ _zimfw_upgrade() {
|
|||
}
|
||||
|
||||
zimfw() {
|
||||
local -r _zversion='1.4.1-SNAPSHOT'
|
||||
local -r _zversion='1.4.1'
|
||||
local -r zusage="Usage: %B${0}%b <action> [%B-q%b|%B-v%b]
|
||||
|
||||
Actions:
|
||||
|
|
Loading…
Reference in a new issue