Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
micbar authored and rhafer committed Nov 24, 2022
1 parent a839dee commit 34862a3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def linting(ctx):
'image': config['openapi-generator-image'],
'pull': 'always',
'commands': [
'/usr/local/bin/docker-entrypoint.sh validate -i api/openapi-spec/v0.0.yaml',
'/usr/local/bin/docker-entrypoint.sh validate -i api/openapi-spec/v1.0.yaml',
],
}
],
Expand Down Expand Up @@ -157,7 +157,7 @@ def generate(ctx, lang):
'pull': 'always',
'commands': [
'test -d "templates/{0}" && TEMPLATE_ARG="-t templates/{0}" || TEMPLATE_ARG=""'.format(lang),
'/usr/local/bin/docker-entrypoint.sh generate --enable-post-process-file -i api/openapi-spec/v0.0.yaml $${TEMPLATE_ARG} --additional-properties=packageName=libregraph --git-user-id=owncloud --git-repo-id=%s -g %s -o %s' % (config["languages"][lang]["repo-slug"], lang, config["languages"][lang]["src"]),
'/usr/local/bin/docker-entrypoint.sh generate --enable-post-process-file -i api/openapi-spec/v1.0.yaml $${TEMPLATE_ARG} --additional-properties=packageName=libregraph --git-user-id=owncloud --git-repo-id=%s -g %s -o %s' % (config["languages"][lang]["repo-slug"], lang, config["languages"][lang]["src"]),
],
},
{
Expand Down
2 changes: 1 addition & 1 deletion api/openapi-spec/v0.0.yaml → api/openapi-spec/v1.0.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.1
info:
title: Libre Graph API
version: v0.17.0
version: v1.0.0
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
window.onload = function() {
// Begin Swagger UI call region
const ui = SwaggerUIBundle({
url: "https://owncloud.dev/libre-graph-api/api/openapi-spec/v0.0.yaml",
url: "https://owncloud.dev/libre-graph-api/api/openapi-spec/v1.0.yaml",
dom_id: '#swagger-ui',
deepLinking: true,
presets: [
Expand Down

0 comments on commit 34862a3

Please sign in to comment.