From 34d52787df803b16110720c0a323cc7f9d8c8182 Mon Sep 17 00:00:00 2001 From: jokedurnez Date: Tue, 14 Jul 2020 16:38:35 -0700 Subject: [PATCH] 0.1.1 --- R/DESCRIPTION | 2 +- R/R/api_client.R | 2 +- R/README.md | 6 +++--- go/README.md | 2 +- go/configuration.go | 2 +- python/README.md | 2 +- python/openlattice/__init__.py | 2 +- python/openlattice/api_client.py | 2 +- python/openlattice/configuration.py | 2 +- python/setup.py | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/R/DESCRIPTION b/R/DESCRIPTION index c7b566c..0a6b312 100644 --- a/R/DESCRIPTION +++ b/R/DESCRIPTION @@ -1,6 +1,6 @@ Package: openlattice Title: R Package Client for OpenLattice API -Version: 0.1.0 +Version: 0.1.1 Authors@R: person("OpenAPI Generator community", email = "support@openlattice.com", role = c("aut", "cre")) Description: OpenLattice API URL: https://github.com/GIT_USER_ID/GIT_REPO_ID diff --git a/R/R/api_client.R b/R/R/api_client.R index 0ea581a..450301f 100644 --- a/R/R/api_client.R +++ b/R/R/api_client.R @@ -39,7 +39,7 @@ ApiClient <- R6::R6Class( # base path of all requests basePath = "https://api.openlattice.com", # user agent in the HTTP request - userAgent = "OpenAPI-Generator/0.1.0/r", + userAgent = "OpenAPI-Generator/0.1.1/r", # default headers in the HTTP request defaultHeaders = NULL, # username (HTTP basic authentication) diff --git a/R/README.md b/R/README.md index ea1190e..73f216a 100644 --- a/R/README.md +++ b/R/README.md @@ -6,7 +6,7 @@ OpenLattice API This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI spec](https://openapis.org) from a remote server, you can easily generate an API client. - API version: 0.0.1 -- Package version: 0.1.0 +- Package version: 0.1.1 - Build package: org.openapitools.codegen.languages.RClientCodegen ## Installation @@ -27,8 +27,8 @@ install.packages("base64enc") git clone https://github.com/GIT_USER_ID/GIT_REPO_ID cd GIT_REPO_ID R CMD build . -R CMD check openlattice_0.1.0.tar.gz -R CMD INSTALL openlattice_0.1.0.tar.gz +R CMD check openlattice_0.1.1.tar.gz +R CMD INSTALL openlattice_0.1.1.tar.gz ``` ### Install the package diff --git a/go/README.md b/go/README.md index d9dc760..bd9c815 100644 --- a/go/README.md +++ b/go/README.md @@ -6,7 +6,7 @@ OpenLattice API This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. - API version: 0.0.1 -- Package version: 0.1.0 +- Package version: 0.1.1 - Build package: org.openapitools.codegen.languages.GoClientCodegen ## Installation diff --git a/go/configuration.go b/go/configuration.go index 321d1a9..9f645df 100644 --- a/go/configuration.go +++ b/go/configuration.go @@ -85,7 +85,7 @@ func NewConfiguration() *Configuration { cfg := &Configuration{ BasePath: "https://api.openlattice.com", DefaultHeader: make(map[string]string), - UserAgent: "OpenAPI-Generator/0.1.0/go", + UserAgent: "OpenAPI-Generator/0.1.1/go", Debug: false, Servers: []ServerConfiguration{ { diff --git a/python/README.md b/python/README.md index 96287d9..37a1416 100644 --- a/python/README.md +++ b/python/README.md @@ -4,7 +4,7 @@ OpenLattice API This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: 0.0.1 -- Package version: 0.1.0 +- Package version: 0.1.1 - Build package: org.openapitools.codegen.languages.PythonClientCodegen ## Requirements. diff --git a/python/openlattice/__init__.py b/python/openlattice/__init__.py index 0d3f7dd..a969fd6 100644 --- a/python/openlattice/__init__.py +++ b/python/openlattice/__init__.py @@ -15,7 +15,7 @@ from __future__ import absolute_import -__version__ = "0.1.0" +__version__ = "0.1.1" # import apis into sdk package from openlattice.api.admin_api import AdminApi diff --git a/python/openlattice/api_client.py b/python/openlattice/api_client.py index c58f56b..45a1b17 100644 --- a/python/openlattice/api_client.py +++ b/python/openlattice/api_client.py @@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/0.1.0/python' + self.user_agent = 'OpenAPI-Generator/0.1.1/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/python/openlattice/configuration.py b/python/openlattice/configuration.py index e7129ee..41b142f 100644 --- a/python/openlattice/configuration.py +++ b/python/openlattice/configuration.py @@ -393,7 +393,7 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 0.0.1\n"\ - "SDK Package Version: 0.1.0".\ + "SDK Package Version: 0.1.1".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/python/setup.py b/python/setup.py index 0ca5073..1b73b87 100644 --- a/python/setup.py +++ b/python/setup.py @@ -14,7 +14,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "openlattice" -VERSION = "0.1.0" +VERSION = "0.1.1" # To install the library, run the following # # python setup.py install