We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6395a48 commit 78dacbcCopy full SHA for 78dacbc
bugout/__init__.py
@@ -7,7 +7,7 @@
7
8
__email__ = "engineering@bugout.dev"
9
__license__ = "MIT"
10
-__version__ = "0.2.2"
+__version__ = "0.2.3"
11
12
__all__ = (
13
"__author__",
bugout/data.py
@@ -205,6 +205,8 @@ class BugoutJournalEntriesRequest(BaseModel):
205
class BugoutJournalEntryContent(BaseModel):
206
title: str
207
content: str
208
+ tags: List[str] = Field(default_factory=list)
209
+ locked_by: Optional[str] = None
210
211
212
class BugoutJournalEntryTags(BaseModel):
0 commit comments