Skip to content

Commit

Permalink
Merge pull request #29 from Lattice-Works/develop
Browse files Browse the repository at this point in the history
0.1.1
  • Loading branch information
jokedurnez authored Jul 14, 2020
2 parents 738a521 + 34d5278 commit 15538c3
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion R/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]", role = c("aut", "cre"))
Description: OpenLattice API
URL: https://github.com/GIT_USER_ID/GIT_REPO_ID
Expand Down
2 changes: 1 addition & 1 deletion R/R/api_client.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions R/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion go/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
{
Expand Down
2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion python/openlattice/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion python/openlattice/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion python/openlattice/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 15538c3

Please sign in to comment.