Skip to content

Commit 888629c

Browse files
mross22jodoglevy
authored andcommitted
1.1.2 release
1 parent e6f0152 commit 888629c

File tree

134 files changed

+269
-196
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+269
-196
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on `Keep a Changelog <http://keepachangelog.com/>`_.
66

7-
============
8-
Unreleased
9-
============
7+
====================
8+
1.1.2 - 2017-03-16
9+
====================
10+
11+
-------
12+
Changed
13+
-------
14+
15+
* Updated cryptography version to 1.8.1
1016

1117
====================
1218
1.1.1 - 2017-02-23

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Contributing to the Oracle Bare Metal Cloud Services Python SDK
22
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
33

4-
*Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.*
4+
*Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.*
55

66
Pull requests can be made under
77
`The Oracle Contributor Agreement <https://www.oracle.com/technetwork/community/oca-486395.html>`_ (OCA).

LICENSE.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
1+
Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
22

33
This software is dual-licensed to you under the Universal Permissive License (UPL) and Apache License 2.0. See below for license terms. You may choose either license, or both.
44
____________________________
55
The Universal Permissive License (UPL), Version 1.0
6-
Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
6+
Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
77

88
Subject to the condition set forth below, permission is hereby granted to any person obtaining a copy of this software, associated documentation and/or data (collectively the "Software"), free of charge and under any and all copyright rights in the Software, and any and all patent rights owned or freely licensable by each licensor hereunder covering either (i) the unmodified Software as contributed to or provided by such licensor, or (ii) the Larger Works (as defined below), to deal in both
99

@@ -19,7 +19,7 @@ The above copyright notice and either this complete permission notice or at a mi
1919
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2020

2121
The Apache Software License, Version 2.0
22-
Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
22+
Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
2323

2424
Licensed under the Apache License, Version 2.0 (the "License"); You may not use this product except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. A copy of the license is also reproduced below. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
2525

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ __ https://github.com/oracle/bmcs-python-sdk
105105
License
106106
=======
107107

108-
Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
108+
Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
109109

110110
This SDK and sample is dual licensed under the Universal Permissive License 1.0 and the Apache License 2.0.
111111

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
# General information about the project.
2222
project = "oraclebmc"
23-
copyright = "2017, Oracle"
23+
copyright = "2016, 2017, Oracle"
2424
author = "Oracle"
2525

2626
try:
@@ -32,7 +32,7 @@
3232
print("metadata. A virtualenv is recommended!")
3333
sys.exit(1)
3434
del pkg_resources
35-
version = ".".join(release.split(".")[:2])
35+
version = ".".join(release.split(".")[:3])
3636

3737
language = "en"
3838

docs/contributions.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.. _contributions:
2+
3+
Contributions
4+
~~~~~~~~~~~~~~~~~~~~~~
5+
Got a fix for a bug, or a new feature you'd like to contribute? The SDK is open source and accepting pull requests on `GitHub <https://github.com/oracle/bmcs-python-sdk>`_.

docs/index.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ To get started, head over to the :ref:`installation instructions <install>` or s
3434
installation
3535
configuration
3636
quickstart
37+
raw-requests
3738
api/index
39+
contributions
40+
notifications
3841
license
3942
feedback

docs/installation.rst

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -188,20 +188,5 @@ reinstalling Python above. Make sure to also reinstall the wheel with this comma
188188

189189
pip install oraclebmc-*-py2.py3-none-any.whl
190190

191-
================
192-
Contributions
193-
================
194-
195-
Got a fix for a bug, or a new feature you'd like to contribute? The SDK is open source and accepting pull requests on `GitHub`__.
196-
197-
__ https://github.com/oracle/bmcs-python-sdk
198-
199-
================
200-
Notifications
201-
================
202-
203-
To be notified when a new version of the Python SDK is released, subscribe to the `Atom feed`_.
204-
205-
.. _Atom feed: https://github.com/oracle/bmcs-python-sdk/releases.atom
206191

207192

docs/license.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
License
22
~~~~~~~
33

4-
Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
4+
Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
55

66
This software is dual-licensed to you under the Universal Permissive License (UPL) and Apache License 2.0.
77
See below for license terms. You may choose either license, or both.
@@ -13,7 +13,7 @@ See below for license terms. You may choose either license, or both.
1313
=====
1414

1515
The Universal Permissive License (UPL), Version 1.0
16-
Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
16+
Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
1717

1818
Subject to the condition set forth below, permission is hereby granted to any person obtaining a copy of this software,
1919
associated documentation and/or data (collectively the "Software"), free of charge and under any and all copyright
@@ -46,7 +46,7 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEAL
4646

4747
The Apache Software License, Version 2.0
4848

49-
Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
49+
Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
5050

5151
Licensed under the Apache License, Version 2.0 (the "License");
5252
You may not use this product except in compliance with the License.

docs/notifications.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.. _notifications:
2+
3+
Notifications
4+
~~~~~~~~~~~~~~~~~~~~~~
5+
To be notified when a new version of the Python SDK is released, subscribe to the `Atom feed`_.
6+
7+
.. _Atom feed: https://github.com/oracle/bmcs-python-sdk/releases.atom

0 commit comments

Comments
 (0)