Skip to content

Commit ab1d4bb

Browse files
committed
Fix release version
1 parent 0e8028e commit ab1d4bb

File tree

3 files changed

+4
-32
lines changed

3 files changed

+4
-32
lines changed

.cursor/rules/project-overview.mdc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ md2term/
2525
├── pyproject.toml # Project config, dependencies, scripts
2626
├── tests/test_md2term.py # Test suite
2727
├── README.md # Documentation
28-
├── CHANGELOG.md # Version history
2928
└── .github/workflows/ # CI/CD (Python 3.13 only)
3029
```
3130

@@ -76,7 +75,6 @@ uv build
7675
2. **Update tests** in `tests/test_md2term.py` for new functionality
7776
3. **Run the full test suite** before committing
7877
4. **Update version** in both `md2term.py` and `pyproject.toml`
79-
5. **Update CHANGELOG.md** for notable changes
8078

8179
## Important Notes
8280

.cursor/rules/release-process.mdc

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,12 @@ alwaysApply: false
2121
- `cat example.md | pv -qL 20 | uv run md2term`
2222
- `uv run md2term README.md`
2323
- `uv run md2term --help`
24-
4. **Update CHANGELOG.md** with new features/fixes
2524
5. **Build package**: `uv build`
2625
6. **Test built package**: Install wheel and test
2726

2827
## Release Steps
2928
1. **Create release branch**: `git checkout -b release/v0.x.x`
3029
2. **Update versions** in both files
31-
3. **Update CHANGELOG.md** - move items from Unreleased to new version
3230
4. **Commit changes**: `git commit -m "Release v0.x.x"`
3331
5. **Create PR** and merge to main
3432
6. **Create GitHub release** with tag `v0.x.x`
@@ -39,20 +37,6 @@ alwaysApply: false
3937
- **Minor (0.2.0)**: New features, CLI options, backward compatible
4038
- **Major (1.0.0)**: Breaking changes, API changes
4139

42-
## CHANGELOG Format
43-
```markdown
44-
## [0.2.0] - 2025-01-XX
45-
46-
### Added
47-
- New feature descriptions
48-
49-
### Changed
50-
- Modified behavior descriptions
51-
52-
### Fixed
53-
- Bug fix descriptions
54-
```
55-
5640
## PyPI Publishing
5741
- Uses GitHub Actions with trusted publishing
5842
- No manual API keys needed

pyproject.toml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
[project]
22
name = "md2term"
3-
version = "1.0.0"
3+
version = "1.0.2"
44
description = "Parse Markdown and turn it into nicely-formatted text for terminal display"
55
readme = "README.md"
6-
authors = [
7-
{ name = "Ian Langworth ☠", email = "[email protected]" }
8-
]
6+
authors = [{ name = "Ian Langworth ☠", email = "[email protected]" }]
97
license = { text = "Apache-2.0" }
108
requires-python = ">=3.8.1"
119
dependencies = [
@@ -32,16 +30,8 @@ classifiers = [
3230
]
3331

3432
[project.optional-dependencies]
35-
test = [
36-
"pytest>=7.0.0",
37-
"pytest-cov>=4.0.0",
38-
"syrupy>=4.0.0",
39-
]
40-
dev = [
41-
"black>=23.0.0",
42-
"ruff>=0.1.0",
43-
"mypy>=1.0.0",
44-
]
33+
test = ["pytest>=7.0.0", "pytest-cov>=4.0.0", "syrupy>=4.0.0"]
34+
dev = ["black>=23.0.0", "ruff>=0.1.0", "mypy>=1.0.0"]
4535

4636
[project.urls]
4737
Homepage = "https://github.com/statico/md2term"

0 commit comments

Comments
 (0)