Skip to content

Commit 5a6414f

Browse files
chore(main): release transcribe-me 1.0.1 (#21)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 7d851f4 commit 5a6414f

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.0.0"
2+
".": "1.0.1"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [1.0.1](https://github.com/echohello-dev/transcribe-me/compare/transcribe-me-1.0.0...transcribe-me-1.0.1) (2025-05-25)
4+
5+
6+
### Bug Fixes
7+
8+
* add build-essential to Dockerfile for native dependency compilation ([388eac9](https://github.com/echohello-dev/transcribe-me/commit/388eac92fd912f3654ba279ea433878e3e850b67))
9+
* resolve package publishing issues - Add missing [build-system] section to pyproject.toml - Update setuptools version requirement to &gt;=70.0 - Fix license format to use modern SPDX expression - Add TWINE_USERNAME environment variable to GitHub Actions - Add debugging steps to workflow for better error diagnosis - Make twine check non-blocking in Makefile due to false positive errors - Exclude tests from package distribution ([72a73de](https://github.com/echohello-dev/transcribe-me/commit/72a73de3817b2d32c27a9f1d27a0f52a6096cf7e))
10+
311
## [1.0.0](https://github.com/echohello-dev/transcribe-me/compare/transcribe-me-0.2.6...transcribe-me-1.0.0) (2025-05-25)
412

513

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ transcribe-me = "transcribe_me.main:main"
77

88
[project]
99
name = "transcribe-me"
10-
version = "1.0.0"
10+
version = "1.0.1"
1111
authors = [{ name = "echoHello", email = "bash@echohello.dev" }]
1212
description = "A CLI tool to transcribe audio files using OpenAI API"
1313
readme = "README.md"

transcribe_me/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Transcribe Me - A CLI tool to transcribe audio files."""
22

3-
__version__ = "1.0.0"
3+
__version__ = "1.0.1"

0 commit comments

Comments
 (0)