From bd14bd4af4c4eb06b22052e53661560b89b5b016 Mon Sep 17 00:00:00 2001 From: Daniel E Knudsen Date: Tue, 29 Oct 2019 14:24:29 -0700 Subject: [PATCH] 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 --- README.md | 6 +++++- buildspec.yml | 2 +- pyqldbsamples/__init__.py | 2 +- requirements.txt | 2 +- setup.py | 3 ++- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b75c96a..23d7223 100644 --- a/README.md +++ b/README.md @@ -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`): @@ -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. diff --git a/buildspec.yml b/buildspec.yml index cadea2f..7f55ed9 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -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 diff --git a/pyqldbsamples/__init__.py b/pyqldbsamples/__init__.py index 4b9c035..5aac839 100644 --- a/pyqldbsamples/__init__.py +++ b/pyqldbsamples/__init__.py @@ -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' diff --git a/requirements.txt b/requirements.txt index 7a363f2..5cfc371 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py index 4aba8ad..5afb0af 100644 --- a/setup.py +++ b/setup.py @@ -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' ] @@ -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,