Skip to content

Commit

Permalink
prepare for 1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarman committed Nov 22, 2016
1 parent b8525c1 commit 95b6c09
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 21 deletions.
12 changes: 0 additions & 12 deletions CHANGELOG.md

This file was deleted.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Python bindings for Carbon Black REST API

**Current version: 0.9.8**
**Current version: 1.0.0**

[![Build Status](https://travis-ci.org/carbonblack/cbapi-python.svg?branch=master)](https://travis-ci.org/carbonblack/cbapi-python)

These are the new Python bindings for the Carbon Black Enterprise Response and Enterprise Protection REST APIs.
To learn more about the REST APIs, visit the Carbon Black Developer Network Website at https://developer.carbonblack.com.

Detailed documentation for this module is hosted on ReadTheDocs at https://cbapi.readthedocs.io. As of May 23, 2016,
this documentation is still under development but we will be updating this documentation as we finalize the API
toward a 1.0.0 release by Q3 2016.
Please visit https://cbapi.readthedocs.io for detailed documentation on this API. Additionally, we have a slideshow
available at https://developer.carbonblack.com/2016/07/presentation-on-the-new-carbon-black-python-api/ that provides
an overview of the concepts that underly this API binding.

## Support

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.9'
version = u'1.0'
# The full version, including alpha/beta/rc tags.
release = u'0.9.8'
release = u'1.0.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

setup(
name='cbapi',
version='0.9.8',
version='1.0.0',
url='https://github.com/carbonblack/cbapi-python',
license='MIT',
author='Carbon Black',
Expand Down
4 changes: 2 additions & 2 deletions src/cbapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
__version__ = 'dev'

# New API as of cbapi 0.9.0
from .response.rest_api import CbEnterpriseResponseAPI
from .protection.rest_api import CbEnterpriseProtectionAPI
from .response.rest_api import CbEnterpriseResponseAPI, CbResponseAPI
from .protection.rest_api import CbEnterpriseProtectionAPI, CbProtectionAPI

# LEGACY APIs, will deprecated as of cbapi 2.0.0
# only import these if the Python version is 2.x
Expand Down

0 comments on commit 95b6c09

Please sign in to comment.