Skip to content

Commit 5b18c20

Browse files
chore(release): 1.2.8 [skip ci]
# [v1.2.8](v1.2.7...v1.2.8) (2025-09-17) ## πŸ› Bug Fixes - [`b90f367`](b90f367) fix(server): fix semver variables in healthcheck
1 parent b90f367 commit 5b18c20

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
# [v1.2.8](https://github.com/warteamx/lab1-todoApp/compare/v1.2.7...v1.2.8) (2025-09-17)
10+
11+
## πŸ› Bug Fixes
12+
- [`b90f367`](https://github.com/warteamx/lab1-todoApp/commit/b90f367) fix(server): fix semver variables in healthcheck
13+
914
# [v1.2.7](https://github.com/warteamx/lab1-todoApp/compare/v1.2.6...v1.2.7) (2025-09-17)
1015

1116
## πŸ› Bug Fixes

β€Žclient/constants/version.tsβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Application version following semantic versioning (SemVer)
88
* Format: MAJOR.MINOR.PATCH
99
*/
10-
export const APP_VERSION = process.env.EXPO_PUBLIC_APP_VERSION || '1.2.7';
10+
export const APP_VERSION = process.env.EXPO_PUBLIC_APP_VERSION || '1.2.8';
1111

1212
/**
1313
* Build number for tracking specific builds
@@ -19,13 +19,13 @@ export const BUILD_NUMBER = process.env.EXPO_PUBLIC_BUILD_NUMBER || '1';
1919
* Build date in ISO format
2020
* Set during the build process
2121
*/
22-
export const BUILD_DATE = process.env.EXPO_PUBLIC_BUILD_DATE || '2025-09-17T08:57:25.664Z';
22+
export const BUILD_DATE = process.env.EXPO_PUBLIC_BUILD_DATE || '2025-09-17T09:24:32.639Z';
2323

2424
/**
2525
* Git commit hash (short)
2626
* Useful for debugging and tracking specific builds
2727
*/
28-
export const COMMIT_HASH = process.env.EXPO_PUBLIC_COMMIT_HASH || '21f42c6';
28+
export const COMMIT_HASH = process.env.EXPO_PUBLIC_COMMIT_HASH || 'b90f367';
2929

3030
/**
3131
* Build environment

β€Žclient/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lab1-todoapp-client",
33
"main": "expo-router/entry",
4-
"version": "1.2.7",
4+
"version": "1.2.8",
55
"description": "React Native client for Todo application built with Expo",
66
"author": "warteamx",
77
"license": "MIT",

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lab1-todoapp",
3-
"version": "1.2.7",
3+
"version": "1.2.8",
44
"description": "Full-stack Todo application with React Native client and Node.js server",
55
"author": "warteamx",
66
"license": "MIT",

β€Žserver/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lab1-todoapp-server",
3-
"version": "1.2.7",
3+
"version": "1.2.8",
44
"description": "Node.js server for Todo application with PostgreSQL and Supabase",
55
"author": "warteamx",
66
"license": "MIT",

0 commit comments

Comments
Β (0)