Skip to content

Commit 95e40e3

Browse files
committed
Release v2.1.2: Fix display and test issues
1 parent 2f2bc6a commit 95e40e3

4 files changed

Lines changed: 67 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [2.1.2] - 2024-03-31
6+
7+
### Fixed
8+
- Fixed viewTask function to properly display task status and details
9+
- Added missing utility functions for task display (getStatusEmoji, getPriorityLabel)
10+
- Fixed colorize function to work with the new directory structure
11+
- Added proper module imports in integration tests
12+
513
## [2.1.1] - 2024-03-31
614

715
### Fixed

RELEASE-SUMMARY.md

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,60 @@
1-
# TaskTracker v2.1.1 Release Summary
1+
# TaskTracker v2.1.2 Release Summary
2+
3+
## Emergency Fixes
4+
5+
- **Display Function Corrections**: Fixed task display functions for enhanced terminal readability
6+
- **Test Suite Updates**: Corrected integration and unit tests to work with the new structure
7+
- **Module Loading Improvements**: Enhanced module loading with better error handling
8+
- **Command Processing**: Fixed issues with status emoji and terminal display
9+
10+
## Installation
11+
12+
### New Installation
13+
14+
```bash
15+
# Clone the repository
16+
git clone https://github.com/DVC2/task_tracker.git
17+
18+
# Install dependencies
19+
cd task_tracker
20+
npm install
21+
22+
# Run the setup
23+
./bin/tasktracker setup
24+
```
25+
26+
### Updating from v2.1.1
27+
28+
```bash
29+
# Back up your data
30+
cp -r .tasktracker/ .tasktracker-backup/
31+
32+
# Pull the latest code
33+
git pull
34+
35+
# Install updated dependencies
36+
npm install
37+
38+
# Run the verification script
39+
./bin/tasktracker verify --fix
40+
```
41+
42+
For detailed update instructions, see the [Update Guide](docs/guides/UPDATING.md).
43+
44+
## Important Changes
45+
46+
This patch fixes issues with the display functions and test suites. If you were experiencing any of these issues:
47+
48+
- Task status emojis not displaying correctly
49+
- Terminal display formatting issues
50+
- Test failures in your project's CI/CD pipelines
51+
52+
These should now be resolved with this update.
53+
54+
## Documentation
55+
56+
- [Update Guide](docs/guides/UPDATING.md) - Follow this guide for updating
57+
- [AI Integration Guide](docs/AI-INTEGRATION.md) - Updated Claude agent integration details
258

359
## Key Fixes
460

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.1
1+
2.1.2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tasktracker-cli",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "A lightweight task management system for developers that helps track technical debt",
55
"main": "bin/tasktracker",
66
"bin": {

0 commit comments

Comments
 (0)