Skip to content

Commit 793f84b

Browse files
committed
Bump version to 0.1.2 and update docs
- Update version in build.gradle, gradle.properties, README.md - Update all @Version Javadoc tags to 0.1.2 - README: update badge and beta notice to 0.1.2
1 parent 648e069 commit 793f84b

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[![Spring Boot](https://img.shields.io/badge/Spring%20Boot-3.2.0-brightgreen.svg)](https://spring.io/projects/spring-boot)
1111
[![JavaFX](https://img.shields.io/badge/JavaFX-21-blue.svg)](https://openjfx.io/)
1212
[![H2 Database](https://img.shields.io/badge/Database-H2-blue.svg)](https://www.h2database.com/)
13-
[![Version](https://img.shields.io/badge/Version-0.1.1-red.svg)](https://github.com/studysync/studysync/releases)
13+
[![Version](https://img.shields.io/badge/Version-0.1.2-red.svg)](https://github.com/geokoko/StudySync/releases)
1414
[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
1515

1616
## Overview
@@ -19,7 +19,7 @@ StudySync is a comprehensive Study Management System built with modern Java tech
1919

2020
Perfect for students who want to integrate their academic calendar with task management and study tracking! 📚✨
2121

22-
> **⚠️ Beta Release**: This is version 0.1.1 under active development. Features may change, and some functionality may be incomplete. Please report issues and provide feedback!
22+
> **⚠️ Beta Release**: This is version 0.1.2 under active development. Features may change, and some functionality may be incomplete. Please report issues and provide feedback!
2323
2424
## Key Features
2525

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ java {
6262
}
6363

6464
group = 'com.studysync'
65-
version = '0.1.1-BETA'
65+
version = '0.1.2'
6666
description = 'StudySync - Personal Study and Task Management Desktop Application (Beta)'
6767

6868
application {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m
66

77
# Project Information
88
project.name=StudySync
9-
project.version=0.1.0-BETA
9+
project.version=0.1.2
1010
project.description=Personal Study and Task Management Application
1111

1212
# Java Configuration

src/main/java/com/studysync/StudySyncApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* </ul></p>
2424
*
2525
* @author geokoko
26-
* @version 0.1.0-BETA
26+
* @version 0.1.2
2727
* @since 0.1.0
2828
*/
2929
@SpringBootApplication

src/main/java/com/studysync/application/StudySyncJavaFXApp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* Application Thread and should not be instantiated directly.</p>
3636
*
3737
* @author geokoko
38-
* @version 0.1.0-BETA
38+
* @version 0.1.2
3939
* @since 0.1.0
4040
* @see StudySyncApplication
4141
* @see StudySyncUI

src/main/java/com/studysync/domain/entity/Category.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* They enable filtering and reporting capabilities within the application.</p>
2121
*
2222
* @author geokoko
23-
* @version 0.1.0-BETA
23+
* @version 0.1.2
2424
* @since 0.1.0
2525
*/
2626
public class Category {

src/main/java/com/studysync/domain/entity/StudyGoal.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
* and analytics to provide insights into learning patterns and goal achievement rates.</p>
5454
*
5555
* @author StudySync Development Team
56-
* @version 0.1.0-BETA
56+
* @version 0.1.2
5757
* @since 0.1.0
5858
* @see DailyReflection
5959
*/

src/main/java/com/studysync/domain/entity/TaskReminder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* notifications, etc.).</p>
4444
*
4545
* @author StudySync Development Team
46-
* @version 0.1.0-BETA
46+
* @version 0.1.2
4747
* @since 0.1.0
4848
* @see Task
4949
* @see ReminderType

src/main/java/com/studysync/domain/service/CategoryService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
* integrity in the domain model.</p>
5959
*
6060
* @author geokoko
61-
* @version 0.1.0-BETA
61+
* @version 0.1.2
6262
* @since 0.1.0
6363
* @see TaskCategory
6464
* @see Category

src/main/java/com/studysync/domain/valueobject/TaskCategory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
*
4646
* @param name the category name (required, 1-50 characters)
4747
* @author geokoko
48-
* @version 0.1.0-BETA
48+
* @version 0.1.2
4949
* @since 0.1.0
5050
* @see Task
5151
*/

0 commit comments

Comments
 (0)