Skip to content

Commit a3541fe

Browse files
committed
Set version to 1.0.0
1 parent 8adddfd commit a3541fe

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.pyproject_generation/pyproject_custom.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uos"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
description = "Upload Orchestration Service - A service providing a web-accessible management and auth layer over upload-path file services."
55
dependencies = [
66
"typer >= 0.15",

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ We recommend using the provided Docker container.
1818

1919
A pre-built version is available at [docker hub](https://hub.docker.com/repository/docker/ghga/upload-orchestration-service):
2020
```bash
21-
docker pull ghga/upload-orchestration-service:0.1.0
21+
docker pull ghga/upload-orchestration-service:1.0.0
2222
```
2323

2424
Or you can build the container yourself from the [`./Dockerfile`](./Dockerfile):
2525
```bash
2626
# Execute in the repo's root dir:
27-
docker build -t ghga/upload-orchestration-service:0.1.0 .
27+
docker build -t ghga/upload-orchestration-service:1.0.0 .
2828
```
2929

3030
For production-ready deployment, we recommend using Kubernetes, however,
3131
for simple use cases, you could execute the service using docker
3232
on a single server:
3333
```bash
3434
# The entrypoint is preconfigured:
35-
docker run -p 8080:8080 ghga/upload-orchestration-service:0.1.0 --help
35+
docker run -p 8080:8080 ghga/upload-orchestration-service:1.0.0 --help
3636
```
3737

3838
If you prefer not to use containers, you may install the service from source:

openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ info:
207207
description: A service providing a web-accessible management and auth layer over
208208
upload-path file services.
209209
title: Upload Orchestration Service
210-
version: 0.1.0
210+
version: 1.0.0
211211
openapi: 3.1.0
212212
paths:
213213
/access-grant:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifiers = [
2121
"Intended Audience :: Developers",
2222
]
2323
name = "uos"
24-
version = "0.1.0"
24+
version = "1.0.0"
2525
description = "Upload Orchestration Service - A service providing a web-accessible management and auth layer over upload-path file services."
2626
dependencies = [
2727
"typer >= 0.15",

0 commit comments

Comments
 (0)