Skip to content

Commit

Permalink
chore(pyproject.toml): Bumps version to 0.5.22
Browse files Browse the repository at this point in the history
  • Loading branch information
SecKatie committed May 21, 2024
1 parent 85b5157 commit 027d71d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
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 = "wyzeapy"
version = "0.5.21"
version = "0.5.22"
description = "A library for interacting with Wyze devices"
authors = ["Katie Mulliken <katie@mulliken.net>"]
license = "GPL-3.0-only"
Expand Down
17 changes: 17 additions & 0 deletions scripts/create_pre_release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash

# Bump the version in the package.json file
poetry version patch

# Get the new version
version=$(poetry version -s)

# Create a new branch
git checkout -b release/$version

# Commit the change
git add .
git commit -m "chore(pyproject.toml): Bumps version to $version"

# Push the branch
git push origin release/$version

0 comments on commit 027d71d

Please sign in to comment.