Skip to content

Commit

Permalink
Version 2.2.20
Browse files Browse the repository at this point in the history
  • Loading branch information
fdev31 committed May 12, 2024
1 parent 241591d commit f9e58a1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pyprland/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "2.2.19-4"
VERSION = "2.2.20"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyprland"
version = "2.2.19"
version = "2.2.20"
description = "Hyperland plugin system - batteries included"
authors = ["fdev31 <[email protected]>"]
license = "MIT"
Expand Down
6 changes: 2 additions & 4 deletions scripts/make_release
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,20 @@ fi
TOKEN=$(gopass show -o websites/api.github.com/fdev31)
URL=https://api.github.com/repos/hyprland-community/pyprland

tox run -e unit || exit -1

# Bump py project {{{
sed -i "s#$ver_line#version = \"$version\"#" pyproject.toml
git add pyproject.toml
V="$version" ./scripts/update_version
git add pyprland/command.py
git add pyprland/version.py
git commit -m "Version $version" --no-verify
git tag $version
git push

poetry publish --build -u $PYPI_USERNAME -p $PYPI_PASSWORD
# }}}


tox run -e unit || exit -1

pushd ../aurPkgs/pyprland/
echo $version | bumpAurPkg.sh
popd
Expand Down
2 changes: 1 addition & 1 deletion tests/test_plugin_scratchpads.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ async def test_no_proc(no_proc_scratchpads, subprocess_shell_mock, server_fixtur
await wait_called(mocks.hyprctl, count=2)

await _send_window_events()
await wait_called(mocks.hyprctl, count=5)
await wait_called(mocks.hyprctl, count=4)
await asyncio.sleep(0.2)
call_set = gen_call_set(mocks.hyprctl.call_args_list)
call_set.remove("movetoworkspacesilent special:scratch_term,address:0x12345677890")
Expand Down

0 comments on commit f9e58a1

Please sign in to comment.