Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bkbilly committed Oct 6, 2023
1 parent 06f6e60 commit 81a955d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lnxlink/modules/speech_recognition.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def start_recognition(self):
try:
recognizer = sr.Recognizer()
with sr.Microphone() as source:
audio = recognizer.listen(source, timeout=2, phrase_time_limit=4)
audio = recognizer.listen(source, timeout=2, phrase_time_limit=3)
self.speech = recognizer.recognize_google(audio)
except Exception as err:
logger.error("Error with speech recognition: %s", err)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "lnxlink"
version = "2023.9.1"
version = "2023.10.0"
description = "Internet Of Things (IOT) integration with Linux using MQTT"
readme = "README.md"
keywords = ["lnxlink"]
Expand Down

0 comments on commit 81a955d

Please sign in to comment.