Skip to content

Commit

Permalink
Prepare for 0.1a.0 release (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
c24t committed Sep 30, 2019
1 parent 126d1e7 commit dcff1d3
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions examples/opentelemetry-example-app/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setuptools.setup(
name="opentelemetry-example-app",
version="0.1.dev0",
version="0.1a.0",
author="OpenTelemetry Authors",
author_email="cncf-opentelemetry-contributors@lists.cncf.io",
classifiers=[
Expand All @@ -35,10 +35,10 @@
long_description=open("README.rst").read(),
install_requires=[
"typing; python_version<'3.5'",
"opentelemetry-api",
"opentelemetry-sdk",
"opentelemetry-ext-http-requests",
"opentelemetry-ext-wsgi",
"opentelemetry-api >= 0.1a.0",
"opentelemetry-sdk >= 0.1a.0",
"opentelemetry-ext-http-requests >= 0.1a.0",
"opentelemetry-ext-wsgi >= 0.1a.0",
"flask",
"requests",
],
Expand Down
4 changes: 2 additions & 2 deletions ext/opentelemetry-ext-azure-monitor/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ package_dir=
=src
packages=find_namespace:
install_requires =
opentelemetry-api
opentelemetry-sdk
opentelemetry-api >= 0.1a.0
opentelemetry-sdk >= 0.1a.0

[options.packages.find]
where = src
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.1.dev0"
__version__ = "0.1a.0"
2 changes: 1 addition & 1 deletion ext/opentelemetry-ext-http-requests/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ package_dir=
=src
packages=find_namespace:
install_requires =
opentelemetry-api >= 0.1.dev0
opentelemetry-api >= 0.1a.0
requests ~= 2.0

[options.packages.find]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.1.dev0"
__version__ = "0.1a.0"
2 changes: 1 addition & 1 deletion ext/opentelemetry-ext-wsgi/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ package_dir=
=src
packages=find_namespace:
install_requires =
opentelemetry-api
opentelemetry-api >= 0.1a.0

[options.packages.find]
where = src
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.1.dev0"
__version__ = "0.1a.0"
2 changes: 1 addition & 1 deletion opentelemetry-api/src/opentelemetry/util/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.1.dev0"
__version__ = "0.1a.0"
2 changes: 1 addition & 1 deletion opentelemetry-sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description="OpenTelemetry Python SDK",
include_package_data=True,
long_description=open("README.rst").read(),
install_requires=["opentelemetry-api==0.1.dev0"],
install_requires=["opentelemetry-api==0.1a.0"],
extras_require={},
license="Apache-2.0",
package_dir={"": "src"},
Expand Down
2 changes: 1 addition & 1 deletion opentelemetry-sdk/src/opentelemetry/sdk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.1.dev0"
__version__ = "0.1a.0"

0 comments on commit dcff1d3

Please sign in to comment.