Skip to content

Commit a5645d3

Browse files
Merge pull request #2 from aws-samples/samples-v1.0.0-rc.2
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
2 parents 402f504 + bd14bd4 commit a5645d3

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The samples in this project demonstrate several uses of Amazon Quantum Ledger Da
77
### Basic Configuration
88

99
You need to set up your AWS security credentials and config before the sample code is able
10-
to connect to AWS.
10+
to connect to AWS.
1111

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

@@ -64,6 +64,10 @@ $ cd docs
6464
$ make html
6565
```
6666

67+
### Release 1.0.0-rc.2 (October 29, 2019)
68+
69+
* Fixes for small documentation issues.
70+
6771
### Release 1.0.0-rc.1 (October 28, 2019)
6872

6973
* Initial preview release of the QLDB Python Sample Application.

buildspec.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ phases:
2020
- pip install -e .
2121
#build:
2222
#commands:
23-
#- THere are no build commands
23+
#- There are no build commands
2424
post_build:
2525
commands:
2626
- python setup.py sdist bdist_wheel

pyqldbsamples/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1515
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1616

17-
__version__ = '1.0.0-rc.1'
17+
__version__ = '1.0.0-rc.2'

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
amazon.ion==0.5.0
22
boto3==1.9.237
33
botocore==1.12.237
4-
pyqldb==1.0.0-rc.1
4+
pyqldb>=1.0.0-rc.1

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
requires = ['amazon.ion>=0.5.0',
2323
'boto3>=1.9.237',
2424
'botocore>=1.12.237',
25-
'pyqldb==1.0.0-rc.1'
25+
'pyqldb>=1.0.0-rc.1'
2626
]
2727

2828

@@ -36,6 +36,7 @@ def get_version():
3636
version=get_version(),
3737
description='Sample app for Amazon QLDB',
3838
long_description=open('README.md').read(),
39+
long_description_content_type='text/markdown',
3940
author='Amazon Web Services',
4041
packages=setuptools.find_packages(),
4142
install_requires=requires,

0 commit comments

Comments
 (0)