Skip to content
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 gts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Python helpers and a reference HTTP service for the [Global Type System (GTS)](https://github.com/globaltypesystem/gts-spec). The package supports GTS identifier parsing, JSON Schema-backed validation, schema compatibility and derivation checks, traits, casting, queries, file loading, a CLI, and a FastAPI application.

The package targets GTS specification v0.13.1 and requires Python 3.9 or later.
The package targets GTS specification v0.13.4 and requires Python 3.9 or later.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion gts/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.1.0",
"info": {
"title": "GTS Server",
"version": "0.13.1"
"version": "0.13.4"
},
"paths": {
"/entities": {
Expand Down
2 changes: 1 addition & 1 deletion gts/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "gts"
version = "0.13.2"
version = "0.13.4"
description = "Global Type System (GTS) helpers: identifiers, parsing, validation, and operations"
readme = "README.md"
authors = [{ name = "GTS Community" }]
Expand Down
2 changes: 1 addition & 1 deletion gts/src/gts/_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def __init__(
self.host = host
self.port = port
self.base_url = f"http://{self.host}:{self.port}"
self.app = FastAPI(title="GTS Server", version="0.13.1")
self.app = FastAPI(title="GTS Server", version="0.13.4")
self.app.add_middleware(
_RequestLoggingMiddleware,
verbose=self.ops.verbose,
Expand Down
Loading