Skip to content

Commit 51f3033

Browse files
committed
set first release data
1 parent c74a92b commit 51f3033

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

BUILD.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ Update the version of your library in `pyproject.toml`:
1616

1717
```bash
1818
# Patch version (0.1.0 → 0.1.1) - for bug fixes
19-
uv version patch
19+
uv version --bump patch
2020

2121
# Minor version (0.1.0 → 0.2.0) - for new features
22-
uv version minor
22+
uv version --bump minor
2323

2424
# Major version (0.1.0 → 1.0.0) - for breaking changes
25-
uv version major
25+
uv version --bump major
2626

2727
# Set specific version
2828
uv version 0.2.0
@@ -54,15 +54,9 @@ twine check dist/*
5454

5555
## Publishing Process
5656

57-
### 1. Test on TestPyPI (Recommended)
5857

59-
First, test your package on TestPyPI:
6058

61-
```bash
62-
uv publish --index testpypi
63-
```
64-
65-
### 2. Test Installation from TestPyPI
59+
### Publish to Main PyPI
6660

6761
Verify your package works correctly:
6862

@@ -88,7 +82,7 @@ Here's the recommended complete workflow:
8882

8983
```bash
9084
# 1. Update version
91-
uv version minor
85+
uv version --bump minor
9286

9387
# 2. Build package
9488
uv build

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "proactiveagent"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
description = "A Python framework to transform your AI from reactive to proactive with intelligent timing and context-aware wake-up patterns - Your agent decides when to speak!"
99
readme = "README.md"
1010
requires-python = ">=3.12"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)