Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.env
.VSCodeCounter
.eslintcache
NOTES.md
TODO.md
/logs
4 changes: 2 additions & 2 deletions engine/app/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from fastapi import FastAPI, Request, HTTPException, Header
from fastapi import FastAPI, Request, HTTPException
from fastapi.responses import JSONResponse, FileResponse
from fastapi.staticfiles import StaticFiles
from fastapi.exceptions import HTTPException as StarletteHTTPException
Expand Down Expand Up @@ -46,7 +46,7 @@
app = FastAPI(
title = "Azure IPAM",
description = description,
version = "2.0.0",
version = "2.1.0",
contact = {
"name": "Azure IPAM Team",
"url": "https://github.com/azure/ipam",
Expand Down
Loading