chore: version bump

This commit is contained in:
Esa Kataja
2025-08-04 19:22:08 +03:00
parent 0e09baff83
commit 72fecb4403
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[project] [project]
name = "n8n_helper" name = "n8n_helper"
version = "0.1.0" version = "1.0.0"
description = "Add your description here" description = "Add your description here"
readme = "README.md" readme = "README.md"
requires-python = ">=3.12" requires-python = ">=3.12"
+3 -1
View File
@@ -14,7 +14,9 @@ async def lifespan(app: FastAPI):
logger.info("Application shutdown") logger.info("Application shutdown")
app = FastAPI(lifespan=lifespan) app = FastAPI(
lifespan=lifespan, title="N8N Helper", description="N8N Helper", version="1.0.0"
)
for route in routes: for route in routes:
Generated
+2 -2
View File
@@ -129,8 +129,8 @@ wheels = [
] ]
[[package]] [[package]]
name = "jobpostingparser" name = "n8n_helper"
version = "0.1.0" version = "1.0.0"
source = { virtual = "." } source = { virtual = "." }
dependencies = [ dependencies = [
{ name = "fastapi" }, { name = "fastapi" },