From 8e1cf1e748aef9e5d04b99011ee7601bb7ee0293 Mon Sep 17 00:00:00 2001 From: TheByronHimes Date: Wed, 15 May 2024 13:21:17 +0000 Subject: [PATCH] Bump version from 0.1.0 -> 1.0.0 --- .pyproject_generation/pyproject_custom.toml | 2 +- README.md | 6 +++--- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.pyproject_generation/pyproject_custom.toml b/.pyproject_generation/pyproject_custom.toml index 388c795..c023e9b 100644 --- a/.pyproject_generation/pyproject_custom.toml +++ b/.pyproject_generation/pyproject_custom.toml @@ -1,6 +1,6 @@ [project] name = "nos" -version = "0.1.0" +version = "1.0.0" description = "The Notification Orchestration Service controls the creation of notification events." dependencies = [ "typer >= 0.9.0", diff --git a/README.md b/README.md index bcd342c..4d45455 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,13 @@ We recommend using the provided Docker container. A pre-build version is available at [docker hub](https://hub.docker.com/repository/docker/ghga/notification-orchestration-service): ```bash -docker pull ghga/notification-orchestration-service:0.1.0 +docker pull ghga/notification-orchestration-service:1.0.0 ``` Or you can build the container yourself from the [`./Dockerfile`](./Dockerfile): ```bash # Execute in the repo's root dir: -docker build -t ghga/notification-orchestration-service:0.1.0 . +docker build -t ghga/notification-orchestration-service:1.0.0 . ``` For production-ready deployment, we recommend using Kubernetes, however, @@ -34,7 +34,7 @@ for simple use cases, you could execute the service using docker on a single server: ```bash # The entrypoint is preconfigured: -docker run -p 8080:8080 ghga/notification-orchestration-service:0.1.0 --help +docker run -p 8080:8080 ghga/notification-orchestration-service:1.0.0 --help ``` If you prefer not to use containers, you may install the service from source: diff --git a/pyproject.toml b/pyproject.toml index cbb7cdd..e4d2271 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ classifiers = [ "Intended Audience :: Developers", ] name = "nos" -version = "0.1.0" +version = "1.0.0" description = "The Notification Orchestration Service controls the creation of notification events." dependencies = [ "typer >= 0.9.0",