Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion sdk/tables/azure-data-tables/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Release History

## 12.0.0b1 (Unreleased)
## 12.0.0b2 (Unreleased)

## 12.0.0b1 (2020-09-08)
This is the first beta of the `azure-data-tables` client library. The Azure Tables client library can seamlessly target either Azure Table storage or Azure Cosmos DB table service endpoints with no code changes.



7 changes: 6 additions & 1 deletion sdk/tables/azure-data-tables/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,16 @@
if not version:
raise RuntimeError('Cannot find version information')

with open("README.md", encoding="utf-8") as f:
README = f.read()
with open("CHANGELOG.md", encoding="utf-8") as f:
CHANGELOG = f.read()

setup(
name=PACKAGE_NAME,
version=version,
description='Microsoft Azure {} Client Library for Python'.format(PACKAGE_PPRINT_NAME),
long_description='\n\n',
long_description=README + '\n\n' + CHANGELOG,
long_description_content_type='text/markdown',
license='MIT License',
author='Microsoft Corporation',
Expand Down