Skip to content

Commit

Permalink
Bump version to 1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmc3 committed Sep 22, 2023
1 parent c1edde6 commit 4417497
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.9.1
current_version = 1.9.2
parse = v?(?P<major>\d+)\.(?P<minor>\d+)\.(?P<revision>\d+)
serialize = {major}.{minor}.{revision}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# antidote

[![MIT License](https://img.shields.io/badge/license-MIT-007EC7.svg)](/LICENSE)
![version](https://img.shields.io/badge/version-v1.9.1-df5e88)
![version](https://img.shields.io/badge/version-v1.9.2-df5e88)

<a title="GetAntidote"
href="https://getantidote.github.io"
Expand Down
2 changes: 1 addition & 1 deletion functions/__antidote_version
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#function __antidote_version {
emulate -L zsh; setopt local_options $_adote_funcopts
0=${(%):-%x}
local ver='1.9.1'
local ver='1.9.2'
local gitsha=$(git -C "${0:A:h:h}" rev-parse --short HEAD 2>/dev/null)
[[ -z "$gitsha" ]] || ver="$ver ($gitsha)"
print "antidote version $ver"
Expand Down
2 changes: 1 addition & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ The `-v/--version` flag displays the current version:
```zsh
% antidote --version
antidote version 1.9.1
antidote version 1.9.2
%
```
Expand Down
2 changes: 1 addition & 1 deletion tests/test_antidote.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ No arg exit status is 2:

```zsh
% antidote --version
antidote version 1.9.1
antidote version 1.9.2
% antidote -v >/dev/null; echo $?
0
% antidote --version >/dev/null; echo $?
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cmd_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Bundle updates complete.
Updating antidote...
Antidote self-update complete.

antidote version 1.9.1
antidote version 1.9.2
%
```

Expand Down

0 comments on commit 4417497

Please sign in to comment.