Skip to content

Commit

Permalink
Bump version from 1.0.2 -> 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TheByronHimes committed Aug 16, 2024
1 parent efe2919 commit 053cbcf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pyproject_generation/pyproject_custom.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "nos"
version = "1.0.2"
version = "2.0.0"
description = "The Notification Orchestration Service controls the creation of notification events."
dependencies = [
"typer >= 0.9.0",
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ 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:1.0.2
docker pull ghga/notification-orchestration-service:2.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:1.0.2 .
docker build -t ghga/notification-orchestration-service:2.0.0 .
```

For production-ready deployment, we recommend using Kubernetes, however,
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:1.0.2 --help
docker run -p 8080:8080 ghga/notification-orchestration-service:2.0.0 --help
```

If you prefer not to use containers, you may install the service from source:
Expand Down Expand Up @@ -269,6 +269,8 @@ The service requires the following configuration parameters:

- **`central_data_stewardship_email`** *(string)*: The email address of the central data steward.

- **`helpdesk_email`** *(string)*: The email address of the GHGA Helpdesk.


### Usage:

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ classifiers = [
"Intended Audience :: Developers",
]
name = "nos"
version = "1.0.2"
version = "2.0.0"
description = "The Notification Orchestration Service controls the creation of notification events."
dependencies = [
"typer >= 0.9.0",
Expand Down

0 comments on commit 053cbcf

Please sign in to comment.