Skip to content

Commit

Permalink
Merge pull request #2 from aws-samples/samples-v1.0.0-rc.2
Browse files Browse the repository at this point in the history
Fixes for 3 small documentation issues:

*  Typo in the buildspec.yml file
*  Not specifying long_description_content_type in setup.py
*  Bumping up the version of the driver
  • Loading branch information
othonrsanchez authored Oct 29, 2019
2 parents 402f504 + bd14bd4 commit a5645d3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The samples in this project demonstrate several uses of Amazon Quantum Ledger Da
### Basic Configuration

You need to set up your AWS security credentials and config before the sample code is able
to connect to AWS.
to connect to AWS.

Set up credentials (in e.g. `~/.aws/credentials`):

Expand Down Expand Up @@ -64,6 +64,10 @@ $ cd docs
$ make html
```

### Release 1.0.0-rc.2 (October 29, 2019)

* Fixes for small documentation issues.

### Release 1.0.0-rc.1 (October 28, 2019)

* Initial preview release of the QLDB Python Sample Application.
Expand Down
2 changes: 1 addition & 1 deletion buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ phases:
- pip install -e .
#build:
#commands:
#- THere are no build commands
#- There are no build commands
post_build:
commands:
- python setup.py sdist bdist_wheel
Expand Down
2 changes: 1 addition & 1 deletion pyqldbsamples/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

__version__ = '1.0.0-rc.1'
__version__ = '1.0.0-rc.2'
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
amazon.ion==0.5.0
boto3==1.9.237
botocore==1.12.237
pyqldb==1.0.0-rc.1
pyqldb>=1.0.0-rc.1
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
requires = ['amazon.ion>=0.5.0',
'boto3>=1.9.237',
'botocore>=1.12.237',
'pyqldb==1.0.0-rc.1'
'pyqldb>=1.0.0-rc.1'
]


Expand All @@ -36,6 +36,7 @@ def get_version():
version=get_version(),
description='Sample app for Amazon QLDB',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Amazon Web Services',
packages=setuptools.find_packages(),
install_requires=requires,
Expand Down

0 comments on commit a5645d3

Please sign in to comment.