Skip to content

Commit

Permalink
New version for each sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
Huluti committed Feb 1, 2024
1 parent a3eb7b4 commit 0ac6571
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 10 deletions.
4 changes: 4 additions & 0 deletions clients/urlr-javascript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.0.2] - 2024-02-01

- Fix two return types in reduce_link200_response

## [1.0.1] - 2024-01-30

- Finish README
Expand Down
5 changes: 4 additions & 1 deletion clients/urlr-php/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## [1.0.0] - 2024-01-28
## [1.0.1] - 2024-02-01

- Fix two return types in reduce_link200_response

## [1.0.0] - 2024-01-28

- **Breaking:** First version of the URLR PHP client generated with the OpenAPI Generator project. Please check examples on README to see how to upgrade.
7 changes: 6 additions & 1 deletion clients/urlr-python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

## [1.0.0] - 2024-01-31
## [1.0.1] - 2024-02-01

- Fix two return types in reduce_link200_response
- Fix licence in setup.py

## [1.0.0] - 2024-02-01

- First version with a complete example

Expand Down
2 changes: 1 addition & 1 deletion openapi-generator/config-javascript.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
npmName: urlr-js
npmVersion: 1.0.1
npmVersion: 1.0.2
gitHost: github.com
gitUserId: urlr
gitRepoId: urlr-javascript
Expand Down
2 changes: 1 addition & 1 deletion openapi-generator/config-php.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packageName: URLR
composerPackageName: urlr/urlr-php
artifactVersion: 1.0.0
artifactVersion: 1.0.1
invokerPackage: URLR
variableNamingConvention: camelCase
developerOrganization: URLR
Expand Down
2 changes: 1 addition & 1 deletion openapi-generator/config-python.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
projectName: URLR
packageName: urlr
packageVersion: 1.0.0
packageVersion: 1.0.1
infoName: URLR
infoEmail: [email protected]
gitUserId: urlr
Expand Down
2 changes: 1 addition & 1 deletion openapi-generator/templates/php-nextgen/README.mustache
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# {{packageName}}@{{artifactVersion}}

[![Latest Stable Version](http://poser.pugx.org/urlr/urlr-php/v)](https://packagist.org/packages/urlr/urlr-php) [![Total Downloads](http://poser.pugx.org/urlr/urlr-php/downloads)](https://packagist.org/packages/urlr/urlr-php) [![Latest Unstable Version](http://poser.pugx.org/urlr/urlr-php/v/unstable)](https://packagist.org/packages/urlr/urlr-php) [![License](http://poser.pugx.org/urlr/urlr-php/license)](https://packagist.org/packages/urlr/urlr-php)
![Packagist Version](https://img.shields.io/packagist/v/urlr/urlr-php) ![Packagist Downloads](https://img.shields.io/packagist/dm/urlr/urlr-php) ![Packagist License](https://img.shields.io/packagist/l/urlr/urlr-php)

This SDK is automatically generated with the [OpenAPI Generator](https://openapi-generator.tech) project.

Expand Down
2 changes: 2 additions & 0 deletions openapi-generator/templates/python/README.mustache
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# {{{packageName}}}@{{packageVersion}}

![PyPI - Python Version](https://img.shields.io/pypi/pyversions/urlr) ![PyPI - Downloads](https://img.shields.io/pypi/dm/urlr) ![PyPI - License](https://img.shields.io/pypi/l/urlr)

This SDK is automatically generated with the [OpenAPI Generator](https://openapi-generator.tech) project.

- API version: {{appVersion}}
Expand Down
4 changes: 2 additions & 2 deletions openapi-generator/templates/python/setup.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ setup(
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
{{#licenseInfo}}license="{{.}}",
{{/licenseInfo}}long_description_content_type='text/markdown',
license="MIT",
long_description_content_type='text/markdown',
long_description="""\
{{appDescription}}
""", # noqa: E501
Expand Down
4 changes: 2 additions & 2 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ paths:
properties:
url: { description: 'Input url to reduce', type: string }
expired_at: { description: 'Expiration date', type: string }
team: { description: 'Team id (displayed on dashboard)', type: string }
folder: { description: 'Folder id (displayed on dashboard)', type: string }
team: { description: 'Team id (displayed on dashboard)', type: integer }
folder: { description: 'Folder id (displayed on dashboard)', type: integer }
url_code: { type: string, example: xMs5c }
domain: { type: string, example: urlr.me }
code: { description: 'HTTP status code', type: integer, example: 200 }
Expand Down

0 comments on commit 0ac6571

Please sign in to comment.