From 5fdf6d767479069b5c2385f7c33b6e99b78805c1 Mon Sep 17 00:00:00 2001 From: subha0319 Date: Wed, 15 Oct 2025 22:24:49 +0530 Subject: [PATCH] feat: initial release v1.0.0 This commit marks the first stable release of the Collaborative Project Management App. - Updated the version in `frontend/package.json` to 1.0.0. - Added a `CHANGELOG.md` to document the initial feature set. --- CHANGELOG.md | 16 ++++++++++++++++ README.md | 1 - frontend/package.json | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..4f2a3c9 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [1.0.0] - 2025-10-15 + +### Added +- Initial release of the full-stack MERN collaborative project management application. +- Key features include: + - User Authentication (JWT) + - Project & Task Management + - Real-Time Collaboration (Socket.io) + - Dashboard Overview \ No newline at end of file diff --git a/README.md b/README.md index 5655135..0fb0e80 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,6 @@ To test the application and its collaborative features without registering, you - **Task Management**: Kanban-style board with ToDo, InProgress, and Done columns. - **Real-Time Collaboration**: Task updates are broadcast to all project members instantly using Socket.io. - **Dashboard Overview**: At-a-glance view of all projects and tasks with a chart for task statuses. -- **Search & Filter**: Easily find tasks by title or filter them by assignee. - **Protected Routes**: API is secured to ensure users can only access their own data. --- diff --git a/frontend/package.json b/frontend/package.json index 9c74fb0..ffdca0b 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,7 +1,7 @@ { "name": "frontend", "private": true, - "version": "0.0.0", + "version": "1.0.0", "type": "module", "scripts": { "dev": "vite",