Skip to content

Commit

Permalink
Build release v2.2.1 (#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
desyncr committed Jun 24, 2017
1 parent 89b74e5 commit 1d212d1
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 5 deletions.
36 changes: 35 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,35 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/) [v2.0.0](http://semver.org/spec/v2.0.0.html).

## [2.2.1] - 2017-06-24

We're adding a new environment variable:

- `ANTIGEN_MUTEX` - Use to configure whether to check for mutex or ignore it.

This configuration effectively controls if the `lock` should work. Alternatively you
may configure which extension you want to load:

_ANTIGEN_BUILTIN_EXTENSIONS='lock parallel defer cache'

Just remove `lock` from the `_ANTIGEN_BUILTIN_EXTENSIONS` environment variable. Take
into account that this may change in the future.

## Added
- [#561, #563] Add flag to disable mutex check

## Changed
- [#559, #562] Update wiki with all installation options (Debian package, OpenSUSE, Homebrew, etc)
- [#564] Improve README.md installation section and content

## Fixed
- [#569, #565] Avoid compiled theme artifact showing up on completion
- [#558] Fix Makefile's glob used to build logging library if required
- [#555, #557, #556] Fix issue with `ps` command's output being discarded (breaking parallel extension)
- [#571, #568] Fix issues with `typeset` on zsh 5.0.x and below

Thanks everyone who reported issues and provided feedback.

## [2.2.0] - 2017-06-18

We're deploying an extension system to further extend Antigen's functionality.
Expand All @@ -14,7 +43,7 @@ Extensions must adhere to a basic interface:
- `-antigen-{extension-name}-init`
- `-antigen-{extension-name}-execute`

Both these functiona must return 0 or 1 to abort initialization. Example:
Both these functions must return 0 or 1 to abort initialization. Example:

antigen ext custom
# -antigen-custom-init
Expand All @@ -38,6 +67,8 @@ functionality:
- [#549, #463] Fix compdump missing completions
- [#553] Catch spurious error message by `ps`

Thanks everyone who reported issues and provided feedback.

## [2.1.1] - 2017-05-20

### Changed
Expand All @@ -48,6 +79,8 @@ functionality:
- [#540] Don't require confirmation when removing lock
- [#535, #536] Avoid duplicate paths

Thanks everyone who reported issues and provided feedback.

## [2.1.0] - 2017-05-14

### Fixed
Expand Down Expand Up @@ -510,6 +543,7 @@ This setup further improves cache performance (`~0.02s`). It's fully optional.
- Added CHANGELOG.md
- Following [Semantic Versioning](http://semver.org/)

[2.2.1]: https://github.com/zsh-users/antigen/compare/v2.2.0...v2.2.1
[2.2.0]: https://github.com/zsh-users/antigen/compare/v2.1.1...v2.2.0
[2.1.1]: https://github.com/zsh-users/antigen/compare/v2.1.0...v2.1.1
[2.1.0]: https://github.com/zsh-users/antigen/compare/v2.0.2...v2.1.0
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
develop
v2.2.1
6 changes: 3 additions & 3 deletions bin/antigen.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,7 @@ antigen-use () {
fi
}
antigen-version () {
local version="develop"
local version="v2.2.1"
local extensions revision=""
if [[ -d $_ANTIGEN_INSTALL_DIR/.git ]]; then
revision=" ($(git --git-dir=$_ANTIGEN_INSTALL_DIR/.git rev-parse --short '@'))"
Expand Down Expand Up @@ -1782,7 +1782,7 @@ typeset -g _ZCACHE_CAPTURE_PREFIX
cat > $ANTIGEN_CACHE <<EOC
#-- START ZCACHE GENERATED FILE
#-- GENERATED: $(date)
#-- ANTIGEN develop
#-- ANTIGEN v2.2.1
$(functions -- _antigen)
antigen () {
local MATCH MBEGIN MEND
Expand All @@ -1806,7 +1806,7 @@ ${(j::)_sources}
#--- BUNDLES END
typeset -gaU _ANTIGEN_BUNDLE_RECORD; _ANTIGEN_BUNDLE_RECORD=($(print ${(qq)_ANTIGEN_BUNDLE_RECORD}))
typeset -g _ANTIGEN_CACHE_LOADED; _ANTIGEN_CACHE_LOADED=true
typeset -g ANTIGEN_CACHE_VERSION; ANTIGEN_CACHE_VERSION='develop'
typeset -g ANTIGEN_CACHE_VERSION; ANTIGEN_CACHE_VERSION='v2.2.1'
#-- END ZCACHE GENERATED FILE
EOC
Expand Down

0 comments on commit 1d212d1

Please sign in to comment.