-
-
Notifications
You must be signed in to change notification settings - Fork 334
Expand file tree
/
Copy pathbump.tape
More file actions
76 lines (60 loc) · 1.36 KB
/
bump.tape
File metadata and controls
76 lines (60 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
Output cli_interactive/bump.gif
Source shared/base.tape
Source shared/git_init.tape
# Initialize commitizen config with version 0.0.1 and changelog enabled
Type `cat > pyproject.toml << 'EOF'`
Enter
Type `[tool.commitizen]`
Enter
Type `version = "0.0.1"`
Enter
Type `update_changelog_on_bump = true`
Enter
Type "EOF"
Enter
Sleep 300ms
# Create initial commit (no tag, so cz bump will ask "Is this the first tag created?")
Type "git add pyproject.toml"
Enter
Sleep 300ms
Type "git commit -m 'chore: initial commit'"
Enter
Sleep 500ms
# Create a feat commit that will trigger a MINOR bump (0.0.1 -> 0.1.0)
Type "echo 'new feature' > feature.py"
Enter
Sleep 300ms
Type "git add feature.py"
Enter
Sleep 300ms
Type "git commit -m 'feat: add awesome new feature'"
Enter
Sleep 500ms
# Clear the screen to start fresh
Type "clear"
Enter
Sleep 500ms
# Show commands from here
Show
# Step 1: Show current version
Type "cz version --project"
Sleep 500ms
Enter
Sleep 1s
# Step 2: Run cz bump (no existing tag, will prompt for first tag)
Type "cz bump"
Sleep 500ms
Enter
# Wait for the "Is this the first tag created?" prompt
Sleep 2s
# Answer Yes to "Is this the first tag created?" (default is Yes, just press Enter)
Enter
Sleep 3s
# Step 3: Show new version after bump
Type "cz version --project"
Sleep 500ms
Enter
Sleep 1s
# Wait for final output
Sleep 1s
Source shared/cleanup.tape