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

Commit d6a3575

Browse files
committed
chore: prepare 0.4.1 release
1 parent 50a69fe commit d6a3575

File tree

21 files changed

+29
-20
lines changed

21 files changed

+29
-20
lines changed

CHANGELOG.md

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

33
All notable changes to the Brane framework will be documented in this file.
44

5+
## [0.4.1] - 2021-08-16
6+
### Fixed
7+
- Disable debug logging from within WaitUntil future.
8+
- Always use offset of at least 1 for nested call frames.
9+
- Uniformly handle local and remote jobs.
10+
- Propagate debug, stdout, and stderr output from driver to client.
11+
- Construct package index from graphql endpoint.
12+
- Missing scylla address in docker-compose-brn.yml
13+
514
## [0.4.0] - 2021-08-11
615
### Added
716
- BraneScript, an alternative to Bakery with more a C-like syntax.

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cff-version: 1.1.0
22
message: "If you use this software, please cite it as below."
33

44
title: Brane
5-
version: 0.4.0
5+
version: 0.4.1
66
license: Apache-2.0
77

88
doi: 10.5281/zenodo.3890928

brane-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "brane-api"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["Onno Valkering"]
55
edition = "2018"
66

brane-bvm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "brane-bvm"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["Onno Valkering"]
55
edition = "2018"
66

brane-cfg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "brane-cfg"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["Onno Valkering"]
55
edition = "2018"
66

brane-clb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "brane-clb"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["Onno Valkering"]
55
edition = "2018"
66

brane-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "brane-cli"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["Onno Valkering"]
55
edition = "2018"
66

brane-drv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "brane-drv"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["Onno Valkering"]
55
edition = "2018"
66

brane-dsl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "brane-dsl"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["Onno Valkering"]
55
edition = "2018"
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""A Bakery kernel for Jupyter"""
22

3-
__version__ = '0.4.0'
3+
__version__ = '0.4.1'
44

55
from .kernel import BakeryKernel

0 commit comments

Comments
 (0)