diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..30bc19b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# Axway API-Management Odata Router +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/) +and this project adheres to [Semantic Versioning](http://semver.org/). + +## [Unreleased] +- $filter parameter is missing (See issue [#9](https://github.com/Axway-API-Management-Plus/odata-routing-policy/issues/9)) + +## [1.2.0] 2021-10-14 +## Added +- Create a ZIP-Package when releasing [#16](https://github.com/Axway-API-Management-Plus/odata-routing-policy/issues/16)) +- One converter for all OData versions [#15](https://github.com/Axway-API-Management-Plus/odata-routing-policy/issues/16)) \ No newline at end of file diff --git a/README.md b/README.md index 46c320e..f8ee15a 100644 --- a/README.md +++ b/README.md @@ -6,13 +6,13 @@ This project provides: The converter takes in an OData URL (such as http://services.odata.org/V4/TripPinServiceRW) and the name of the output file to convert the odata specfication to a Swagger 2.0 API-Specification, which can imported into the Axway API-Manager. ## OData V4 Usage: ```bash -D:\odata-routing-policy\converter\odata4\bin\Release>OData2Swagger.exe http://services.odata.org/V4/TripPinServiceRW name_of_swagger_file.json [http-basic-username] [http-basic-password] +D:\odata-routing-policy\converter\odata\bin\Release>OdataSwaggerConverter.exe http://services.odata.org/V4/TripPinServiceRW name_of_swagger_file.json [http-basic-username] [http-basic-password] ``` ## OData V3 and Below Usage: ```bash -D:\odata-routing-policy\converter\odata3\bin\Release>OdataSwaggerConverter.exe http://services.odata.org/V3/Northwind/Northwind.svc/$metadata name_of_swagger_file.json [http-basic-username] [http-basic-password] +D:\odata-routing-policy\converter\odata\bin\Release>OdataSwaggerConverter.exe http://services.odata.org/V3/Northwind/Northwind.svc/$metadata name_of_swagger_file.json [http-basic-username] [http-basic-password] ```