Skip to content

Commit b092c4e

Browse files
fix: timezone not imported in user_profile
1 parent e6f6fbd commit b092c4e

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

app/models/taste_profile.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
"""
2-
Taste Profile Model - Additive, Transparent Design
3-
4-
This module implements a transparent, additive taste profile system.
5-
No hidden interactions, easy to debug, powerful enough for all row types.
6-
"""
7-
8-
from datetime import datetime
1+
from datetime import datetime, timezone
92
from typing import Any
103

114
from pydantic import BaseModel, Field

scripts/generate_release_notes.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,10 +215,9 @@ def generate_release_notes(commits, last_release_tag):
215215
prompt = (
216216
"Generate release notes for the given commits. Focus on user-facing changes and important technical"
217217
" improvements that stakeholders care about Organize changes into clear sections such as: Summary,"
218-
" Features, Bug Fixes, Improvements, etc. with markdown formatting. Include PR requests with (#123) at"
219-
" the end of each change. Include refactor commits only if they contain meaningful architectural"
220-
" changes. Exclude trivial changes like formatting, linting, merge commits, or dependency updates"
221-
" unless they're significant. Format with proper markdown. Do not include commit hashes. When"
218+
" Features, Bug Fixes, Improvements, etc. with markdown formatting. Include refactor commits only if"
219+
" they contain meaningful architectural changes. Exclude trivial changes like formatting, linting,"
220+
" merge commits, or dependency updates unless they're significant. Format with proper markdown. When"
222221
" generating release notes, do not just write commit messages. Describe them. Try to make them like"
223222
" release change.Do not output anything other than the release notes. Keep it to a reasonable length"
224223
" that helps developers and engineers understand the changes. This is directly attached to GitHub"

0 commit comments

Comments
 (0)