Skip to content

Commit

Permalink
Bump version to 1.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmc3 committed Nov 29, 2023
1 parent 903ef48 commit 208996e
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.3
current_version = 1.9.4
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.3-df5e88)
![version](https://img.shields.io/badge/version-v1.9.4-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.3'
local ver='1.9.4'
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 @@ -59,7 +59,7 @@ The `-v/--version` flag displays the current version:
```zsh
% antidote --version
antidote version 1.9.3
antidote version 1.9.4
%
```
Expand Down
2 changes: 1 addition & 1 deletion tests/test_antidote.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ No arg exit status is 2:

```zsh
% antidote --version
antidote version 1.9.3
antidote version 1.9.4
% 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 @@ -23,7 +23,7 @@ Bundle updates complete.
Updating antidote...
Antidote self-update complete.

antidote version 1.9.3
antidote version 1.9.4
%
```

Expand Down

0 comments on commit 208996e

Please sign in to comment.