Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.

Commit c7eb899

Browse files
authored
Prepare for 0.3.0 release (#554)
1 parent 64f0a1e commit c7eb899

File tree

21 files changed

+27
-24
lines changed

21 files changed

+27
-24
lines changed

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22

33
## Unreleased
44

5+
## 0.3.0
6+
Released 2019-03-11
7+
58
- Fix gRPC client tracer reuse bug
69
([#539](https://github.com/census-instrumentation/opencensus-python/pull/539))
7-
- Fix bugs in Prometheus exporter. Use ordered list for histogram buckets.
8-
Use `UnknownMetricFamily` for `SumData` instead of `UntypedMetricFamily`.
9-
Check if label keys and values match before exporting.
10-
- Remove min and max from Distribution.
10+
- Update prometheus client and fix multiple bugs in the exporter
11+
([#492](https://github.com/census-instrumentation/opencensus-python/pull/492))
12+
- Remove min and max from `Distribution`
13+
([#501](https://github.com/census-instrumentation/opencensus-python/pull/501))
1114
- Replace stackdriver `gke_container` resources, see the [GKE migration
1215
notes](https://cloud.google.com/monitoring/kubernetes-engine/migration#incompatible)
1316
for details

contrib/opencensus-correlation/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = '0.2.dev0'
15+
__version__ = '0.3.0'

contrib/opencensus-ext-dbapi/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
include_package_data=True,
4040
long_description=open('README.rst').read(),
4141
install_requires=[
42-
'opencensus >= 0.2.dev0, < 1.0.0',
42+
'opencensus >= 0.3.0, < 1.0.0',
4343
],
4444
extras_require={},
4545
license='Apache-2.0',

contrib/opencensus-ext-django/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
long_description=open('README.rst').read(),
4141
install_requires=[
4242
'Django >= 1.11.0, <= 1.11.20',
43-
'opencensus >= 0.2.dev0, < 1.0.0',
43+
'opencensus >= 0.3.0, < 1.0.0',
4444
],
4545
extras_require={},
4646
license='Apache-2.0',

contrib/opencensus-ext-flask/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
long_description=open('README.rst').read(),
4141
install_requires=[
4242
'flask >= 0.12.3, < 2.0.0',
43-
'opencensus >= 0.2.dev0, < 1.0.0',
43+
'opencensus >= 0.3.0, < 1.0.0',
4444
],
4545
extras_require={},
4646
license='Apache-2.0',

contrib/opencensus-ext-google-cloud-clientlibs/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
include_package_data=True,
4040
long_description=open('README.rst').read(),
4141
install_requires=[
42-
'opencensus >= 0.2.dev0, < 1.0.0',
42+
'opencensus >= 0.3.0, < 1.0.0',
4343
'opencensus-ext-grpc >= 0.1.dev0, < 1.0.0',
4444
'opencensus-ext-requests >= 0.1.dev0, < 1.0.0',
4545
],

contrib/opencensus-ext-grpc/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
long_description=open('README.rst').read(),
4141
install_requires=[
4242
'grpcio >= 1.0.0, < 2.0.0',
43-
'opencensus >= 0.2.dev0, < 1.0.0',
43+
'opencensus >= 0.3.0, < 1.0.0',
4444
],
4545
extras_require={},
4646
license='Apache-2.0',

contrib/opencensus-ext-httplib/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
include_package_data=True,
4040
long_description=open('README.rst').read(),
4141
install_requires=[
42-
'opencensus >= 0.2.dev0, < 1.0.0',
42+
'opencensus >= 0.3.0, < 1.0.0',
4343
],
4444
extras_require={},
4545
license='Apache-2.0',

contrib/opencensus-ext-jaeger/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
include_package_data=True,
4040
long_description=open('README.rst').read(),
4141
install_requires=[
42-
'opencensus >= 0.2.dev0, < 1.0.0',
42+
'opencensus >= 0.3.0, < 1.0.0',
4343
],
4444
extras_require={},
4545
license='Apache-2.0',

contrib/opencensus-ext-mysql/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
long_description=open('README.rst').read(),
4141
install_requires=[
4242
'mysql-connector >= 2.1.6, < 3.0.0',
43-
'opencensus >= 0.2.dev0, < 1.0.0',
43+
'opencensus >= 0.3.0, < 1.0.0',
4444
'opencensus-ext-dbapi >= 0.1.dev0, < 1.0.0',
4545
],
4646
extras_require={},

0 commit comments

Comments
 (0)