v1.3.1
This commit is contained in:
parent
713b7b2f5d
commit
5059dd2c65
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]
|
## [Unreleased]
|
||||||
|
|
||||||
|
_No unreleased changes._
|
||||||
|
|
||||||
|
## [1.3.1] - 2020-07-24
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- gunzip failing with "unexpected end of file" when trying to upgrade zimfw.
|
- gunzip failing with "unexpected end of file" when trying to upgrade zimfw.
|
||||||
(See [#407](https://github.com/zimfw/zimfw/issues/407))
|
(See [#407](https://github.com/zimfw/zimfw/issues/407))
|
||||||
|
@ -129,7 +133,8 @@ Take your time to review the updated [README.md] and the changes listed below.
|
||||||
[termtitle]: https://github.com/zimfw/termtitle
|
[termtitle]: https://github.com/zimfw/termtitle
|
||||||
[s1ck94]: https://github.com/zimfw/s1ck94
|
[s1ck94]: https://github.com/zimfw/s1ck94
|
||||||
|
|
||||||
[Unreleased]: https://github.com/zimfw/zimfw/compare/v1.3.0...HEAD
|
[Unreleased]: https://github.com/zimfw/zimfw/compare/v1.3.1...HEAD
|
||||||
|
[1.3.1]: https://github.com/zimfw/zimfw/compare/v1.3.0...v1.3.1
|
||||||
[1.3.0]: https://github.com/zimfw/zimfw/compare/v1.2.2...v1.3.0
|
[1.3.0]: https://github.com/zimfw/zimfw/compare/v1.2.2...v1.3.0
|
||||||
[1.2.2]: https://github.com/zimfw/zimfw/compare/v1.2.1...v1.2.2
|
[1.2.2]: https://github.com/zimfw/zimfw/compare/v1.2.1...v1.2.2
|
||||||
[1.2.1]: https://github.com/zimfw/zimfw/compare/v1.2.0...v1.2.1
|
[1.2.1]: https://github.com/zimfw/zimfw/compare/v1.2.0...v1.2.1
|
||||||
|
|
|
@ -6,7 +6,7 @@ class Zim
|
||||||
@home = "${ZDOTDIR:-${HOME}}"
|
@home = "${ZDOTDIR:-${HOME}}"
|
||||||
@min_zsh_version = "5.2"
|
@min_zsh_version = "5.2"
|
||||||
@startup_files_glob = ".z(shenv|profile|shrc|login|logout)"
|
@startup_files_glob = ".z(shenv|profile|shrc|login|logout)"
|
||||||
@version = "1.3.0"
|
@version = "1.3.1"
|
||||||
@ellipsis = " ..."
|
@ellipsis = " ..."
|
||||||
@okay = "%F{green})%f "
|
@okay = "%F{green})%f "
|
||||||
@warn = "! "
|
@warn = "! "
|
||||||
|
|
|
@ -313,7 +313,7 @@ _zimfw_compile() {
|
||||||
}
|
}
|
||||||
|
|
||||||
_zimfw_info() {
|
_zimfw_info() {
|
||||||
print -R 'zimfw version: '${_zversion}' (previous commit is dc93d13)'
|
print -R 'zimfw version: '${_zversion}' (previous commit is 713b7b2)'
|
||||||
print -R 'ZIM_HOME: '${ZIM_HOME}
|
print -R 'ZIM_HOME: '${ZIM_HOME}
|
||||||
print -R 'Zsh version: '${ZSH_VERSION}
|
print -R 'Zsh version: '${ZSH_VERSION}
|
||||||
print -R 'System info: '$(command uname -a)
|
print -R 'System info: '$(command uname -a)
|
||||||
|
@ -357,7 +357,7 @@ _zimfw_upgrade() {
|
||||||
}
|
}
|
||||||
|
|
||||||
zimfw() {
|
zimfw() {
|
||||||
local -r _zversion='1.3.0'
|
local -r _zversion='1.3.1'
|
||||||
local -r zusage="Usage: %B${0}%b <action> [%B-q%b|%B-v%b]
|
local -r zusage="Usage: %B${0}%b <action> [%B-q%b|%B-v%b]
|
||||||
|
|
||||||
Actions:
|
Actions:
|
||||||
|
|
Loading…
Reference in a new issue