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

Commit 4179c58

Browse files
authored
v0.4.x master version updates (#606)
1 parent b1075ce commit 4179c58

File tree

51 files changed

+141
-32
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+141
-32
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## Unreleased
44

5+
## 0.4.0
6+
Released 2019-04-08
7+
8+
- Multiple bugfixes
9+
- Use separate context package instead of threadlocals for execution context
10+
([#573](https://github.com/census-instrumentation/opencensus-python/pull/573))
11+
512
## 0.3.0
613
Released 2019-03-11
714

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.1.0
4+
Released 2019-04-08
45

5-
- Add this changelog.
6+
- Initial version

context/opencensus-context/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.1.dev0'
15+
__version__ = '0.2.dev0'

contrib/opencensus-ext-dbapi/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
## 0.1.1
6+
Released 2019-04-08
7+
8+
- Cosmetic changes
9+
510
## 0.1.0
611
Released 2019-03-19
712

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.4.dev0, < 1.0.0',
42+
'opencensus >= 0.5.dev0, < 1.0.0',
4343
],
4444
extras_require={},
4545
license='Apache-2.0',

contrib/opencensus-ext-django/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
## 0.2.0
6+
Released 2019-04-08
7+
8+
- Update for package changes in core library
9+
510
## 0.1.0
611
Released 2019-03-19
712

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.4.dev0, < 1.0.0',
43+
'opencensus >= 0.5.dev0, < 1.0.0',
4444
],
4545
extras_require={},
4646
license='Apache-2.0',

contrib/opencensus-ext-django/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.dev0'

contrib/opencensus-ext-flask/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
## 0.2.0
6+
Released 2019-04-08
7+
8+
- Update for package changes in core library
9+
510
## 0.1.0
611
Released 2019-03-19
712

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.4.dev0, < 1.0.0',
43+
'opencensus >= 0.5.dev0, < 1.0.0',
4444
],
4545
extras_require={},
4646
license='Apache-2.0',

0 commit comments

Comments
 (0)