Skip to content

Commit 29f5410

Browse files
committed
Version v1.1.1
1 parent e2739b3 commit 29f5410

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# cpp-oasvalidator v1.1.0: API Reference
1+
# cpp-oasvalidator v1.1.1: API Reference
22
`cpp-oasvalidator` offers a comprehensive API for validating HTTP requests in accordance with OpenAPI specifications. It encompasses various validation categories including *Path, Body, Parameters, and Response*.
33

44
The API functions return a `ValidationError` type and accept a reference to a `std::string` for populating error messages in case of validation failure. A successful validation returns `ValidationError::NONE`. Otherwise, an error code is returned and the error message is populated. The error message follows this JSON schema:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
33
# Version and other settings
44
set(OASVALIDATOR_VERSION_MAJOR "1")
55
set(OASVALIDATOR_VERSION_MINOR "1")
6-
set(OASVALIDATOR_VERSION_PATCH "0")
6+
set(OASVALIDATOR_VERSION_PATCH "1")
77
set(OASVALIDATOR_VERSION_STRING "${OASVALIDATOR_VERSION_MAJOR}.${OASVALIDATOR_VERSION_MINOR}.${OASVALIDATOR_VERSION_PATCH}")
88
set(OASVALIDATOR_SUMMARY "C++ library")
99
set(OASVALIDATOR_REPOSITORY_URL "https://github.com/nawaz1991/cpp-oasvalidator")

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cpp-oasvalidator: REST Request Validator
88
![Win build](https://img.shields.io/github/actions/workflow/status/nawaz1991/cpp-oasvalidator/windows-build.yml?logo=windows&label=Tests)
99
[![codecov](https://codecov.io/gh/nawaz1991/cpp-oasvalidator/branch/main/graph/badge.svg?token=96b475c2-8dc1-4693-8ce3-84a572720d43)](https://codecov.io/gh/nawaz1991/cpp-oasvalidator)
1010
[![License](https://img.shields.io/github/license/nawaz1991/cpp-oasvalidator.svg)](./LICENSE)
11-
[![API Docs](https://img.shields.io/badge/API%20Docs-v1.1.0-brightgreen)](API.md)
11+
[![API Docs](https://img.shields.io/badge/API%20Docs-v1.1.1-brightgreen)](API.md)
1212
[![Benchmark](https://img.shields.io/badge/Benchmark-brightgreen)](https://nawaz1991.github.io/cpp-oasvalidator/benchmark.html)
1313

1414

0 commit comments

Comments
 (0)