v1.4.2
This commit is contained in:
parent
6d577d7f6a
commit
1df02c57df
3 changed files with 16 additions and 11 deletions
21
CHANGELOG.md
21
CHANGELOG.md
|
@ -7,16 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
_No unreleased changes._
|
||||||
|
|
||||||
|
## [1.4.2] - 2021-02-19
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- "Not a valid ref: refs/remotes/origin/main" error when the repository's default
|
- "Not a valid ref: refs/remotes/origin/main" error in `zimfw update`, when the
|
||||||
branch was renamed to main.
|
repository's default branch was renamed to main.
|
||||||
|
|
||||||
## [1.4.1] - 2021-02-17
|
## [1.4.1] - 2021-02-17
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Correctly get the repository's default branch. The related change in version
|
- Correctly get the repository's default branch in `zimfw update`. The related
|
||||||
1.4.0 actually broke updating the modules, as new changes stopped being
|
change in version 1.4.0 actually broke updating the modules, as new changes
|
||||||
fetched.
|
stopped being fetched.
|
||||||
|
|
||||||
## [1.4.0] - 2021-01-07
|
## [1.4.0] - 2021-01-07
|
||||||
|
|
||||||
|
@ -26,8 +30,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Show error when no parameter is provided to `-c|--cmd` in `zmodule`.
|
- Show error when no parameter is provided to `-c|--cmd` in `zmodule`.
|
||||||
- Use repository's default branch instead of hardcoding the default to `master`,
|
- Use repository's default branch instead of hardcoding the default to `master`
|
||||||
when no branch is specified in `zmodule`.
|
in `zimfw update`, when no branch is specified in `zmodule`.
|
||||||
|
|
||||||
## [1.3.2] - 2020-08-01
|
## [1.3.2] - 2020-08-01
|
||||||
|
|
||||||
|
@ -159,7 +163,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.4.1...HEAD
|
[Unreleased]: https://github.com/zimfw/zimfw/compare/v1.4.2...HEAD
|
||||||
|
[1.4.2]: https://github.com/zimfw/zimfw/compare/v1.4.1...v1.4.2
|
||||||
[1.4.1]: https://github.com/zimfw/zimfw/compare/v1.4.0...v1.4.1
|
[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.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.2]: https://github.com/zimfw/zimfw/compare/v1.3.1...v1.3.2
|
||||||
|
|
|
@ -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.4.2-SNAPSHOT"
|
@version = "1.4.2"
|
||||||
@ellipsis = " ..."
|
@ellipsis = " ..."
|
||||||
@okay = "%F{green})%f "
|
@okay = "%F{green})%f "
|
||||||
@warn = "! "
|
@warn = "! "
|
||||||
|
|
|
@ -319,7 +319,7 @@ _zimfw_compile() {
|
||||||
}
|
}
|
||||||
|
|
||||||
_zimfw_info() {
|
_zimfw_info() {
|
||||||
print -R 'zimfw version: '${_zversion}' (built at 2021-02-19 19:42:09 UTC, previous commit is ddfba96)'
|
print -R 'zimfw version: '${_zversion}' (built at 2021-02-19 20:25:37 UTC, previous commit is 8afb0b9)'
|
||||||
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)
|
||||||
|
@ -366,7 +366,7 @@ _zimfw_upgrade() {
|
||||||
}
|
}
|
||||||
|
|
||||||
zimfw() {
|
zimfw() {
|
||||||
local -r _zversion='1.4.2-SNAPSHOT'
|
local -r _zversion='1.4.2'
|
||||||
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