Skip to content

build: version info update #1521

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/api-reference/apidocs.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Permify API",
"description": "Permify is an open source authorization service for creating fine-grained and scalable authorization systems.",
"version": "v1.0.3",
"version": "v1.0.4",
"contact": {
"name": "API Support",
"url": "https://github.com/Permify/permify/issues",
Expand Down
2 changes: 1 addition & 1 deletion docs/api-reference/openapiv2/apidocs.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Permify API",
"description": "Permify is an open source authorization service for creating fine-grained and scalable authorization systems.",
"version": "v1.0.3",
"version": "v1.0.4",
"contact": {
"name": "API Support",
"url": "https://github.com/Permify/permify/issues",
Expand Down
2 changes: 1 addition & 1 deletion internal/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var Identifier = ""
*/
const (
// Version is the last release of the Permify (e.g. v0.1.0)
Version = "v1.0.3"
Version = "v1.0.4"
)

// Function to create a single line of the ASCII art with centered content and color
Expand Down
1 change: 0 additions & 1 deletion internal/storage/memory/tenantWriter.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,4 @@ func (w *TenantWriter) DeleteTenant(_ context.Context, tenantID string) (result

txn.Commit()
return raw.(storage.Tenant).ToTenant(), nil

}
1 change: 0 additions & 1 deletion internal/storage/postgres/tenantWriter.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,4 @@ func (w *TenantWriter) DeleteTenant(ctx context.Context, tenantID string) (resul
Name: name,
CreatedAt: timestamppb.New(createdAt),
}, nil

}
2 changes: 1 addition & 1 deletion pkg/pb/base/v1/openapi.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/base/v1/openapi.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
info: {
title: "Permify API";
description: "Permify is an open source authorization service for creating fine-grained and scalable authorization systems.";
version: "v1.0.3";
version: "v1.0.4";
contact: {
name: "API Support";
url: "https://github.com/Permify/permify/issues";
Expand Down
Loading