diff --git a/CHANGELOG.md b/CHANGELOG.md index c928c9b..443e481 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,25 +1,9 @@ -## 1.0.0 (2023-06-01) - -### Feat - -- adds capability to specify the NOS - -## 0.2.3 (2023-05-30) - -## 0.2.2 (2023-05-30) +## 1.0.1 (2023-06-01) -## 0.2.1 (2023-05-30) +### Build -## 0.2.0 (2023-05-30) +- **docker**: fixes entrypoint for Dockerfile -## 0.1.3 (2023-05-30) - -## 0.1.2 (2023-05-30) - -## 0.1.1 (2023-05-30) - -## 0.1.0 (2023-05-29) - -### Feat +## 1.0.0 (2023-06-01) -- implements basic functionality +- implements initial, basic functionality diff --git a/Dockerfile b/Dockerfile index cfca47d..3f6874a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,4 +18,4 @@ COPY nos_config_collector nos_config_collector RUN poetry install --only-root -CMD ["poetry", "run", "uvicorn", "nos_config_collector:app", "--proxy-hosts", "--host", "0.0.0.0", "--port", "80"] \ No newline at end of file +CMD ["poetry", "run", "uvicorn", "nos_config_collector:app", "--proxy-headers", "--host", "0.0.0.0", "--port", "80"] \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 7ac539f..bab01a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nos-config-collector" -version = "1.0.0" +version = "1.0.1" description = "" authors = ["Leo Kirchner "] readme = "README.md" @@ -54,7 +54,6 @@ tag_format = "$version" version_type = "semver" version_provider = "poetry" update_changelog_on_bump = true -major_version_zero = true [tool.black] line-length = 120