Skip to content

Commit ecded74

Browse files
authored
Merge pull request #8 from guardrails-ai/rename
Rename
2 parents c9d9340 + 67e4224 commit ecded74

File tree

82 files changed

+29
-29
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+29
-29
lines changed

.github/workflows/build-sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
# The arguments for the `git add` command (see the paragraph below for more info)
4444
# Default: '.'
45-
add: 'open-api-spec.yml guard-rails-api-client'
45+
add: 'open-api-spec.yml guardrails-api-client'
4646

4747
# The name of the user that will be displayed as the author of the commit.
4848
# Default: depends on the default_author input

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
open-api-spec.yml
2-
guard-rails-api-client
2+
guardrails-api-client
33
.venv

archive/telemetry-service-spec.orig.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: '3.0.0'
22
info:
3-
title: GuardRails Telemetry
3+
title: Guardrails Telemetry
44
version: '1.0'
55
description: Hello!
66
paths:

build-sdk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22
python3 -m pip install openapi-python-client;
33
version=$(yq '.info.version' open-api-spec.yml);
4-
rm -rf ./guard-rails-api-client;
4+
rm -rf ./guardrails-api-client;
55
openapi-python-client generate --config ./config.json --path ./open-api-spec.yml --meta setup;

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"package_version_override": "0.0.2"
2+
"package_version_override": "0.1.0"
33
}
File renamed without changes.

guard-rails-api-client/README.md renamed to guardrails-api-client/README.md

Lines changed: 13 additions & 13 deletions

guard-rails-api-client/guard_rails_api_client/__init__.py renamed to guardrails-api-client/guardrails_api_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""A client library for accessing GuardRails API"""
1+
"""A client library for accessing Guardrails API"""
22

33
from .client import AuthenticatedClient, Client
44

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)